Permission Setup Review
python scripts/_tool_policy_note.py is an optional setup helper for the Sell The News skill skill. It may apply broad filesystem permissions for compatibility. Show the target paths and permission mode, explain the risk, and prefer a narrower mode when shared write access is not needed.
Sell The News skill
Use this skill to interact with the official Sell The News hosted endpoint:
- Endpoint:
https://mcp.sellthenews.org/mcp
- Protocol: Streamable HTTP
- Auth: none
Use the bundled shell wrappers instead of reimplementing ad hoc HTTP calls.
Workflow
- Use
scripts/stn_mcp_call.sh <tool_name> [json_args] for generic calls.
- Prefer the per-tool wrappers when the requested operation maps directly.
- If a user reports connection issues in another client, check protocol mismatch first:
- this server uses Streamable HTTP
- do not configure it as SSE
- If a direct MCP client is unavailable, these shell wrappers are the fallback.
Available tools
get_live_news
- Latest WSJ/NYT/Bloomberg/FT news
- Common params:
limit, offset, lang, sources, marketOnly, before
get_wsb_analysis
- AI analysis of daily r/wallstreetbets discussion
- Common params:
lang, offset, run
get_wsb_discussion
- Raw WSB comments with scores/threading
- Common params:
limit, date
get_stock_news
- News for a ticker
- Required:
ticker
- Common params:
limit, offset
get_options_data
- Options chain + Greeks exposure
- Required:
ticker
- Common params:
expiration, greeks
search_news
- Full-text search across indexed news
- Required:
query
- Common params:
lang, sources, limit, offset, sort
get_trump_posts
- Trump Truth Social posts with market-impact analysis
- Common params:
lang, limit, offset, showAll
Bundled wrappers
scripts/stn_mcp_call.sh <tool_name> [json_args]
scripts/get_live_news.sh [json_args]
scripts/get_wsb_analysis.sh [json_args]
scripts/get_wsb_discussion.sh [json_args]
scripts/get_stock_news.sh [json_args]
scripts/get_options_data.sh [json_args]
scripts/search_news.sh [json_args]
scripts/get_trump_posts.sh [json_args]
Examples
# latest Chinese live news
skills/sell-the-news/scripts/get_live_news.sh '{"lang":"zh","limit":5}'
# NVDA news
skills/sell-the-news/scripts/get_stock_news.sh '{"ticker":"NVDA","limit":10}'
# search tariff-related news
skills/sell-the-news/scripts/search_news.sh '{"query":"tariff","lang":"en","sort":"time","limit":10}'
# options data for SPY
skills/sell-the-news/scripts/get_options_data.sh '{"ticker":"SPY","greeks":"gamma,vanna"}'
Notes
- Use
curl for transport. In testing, curl worked while some simpler HTTP clients hit Cloudflare friction.
- The wrapper performs a short-lived MCP initialize request followed by a tool call.
- The server returns
text/event-stream; the wrapper extracts JSON from data: lines.
- Keep requests read-only. This MCP is for retrieval/analysis.
1---2name: sell-the-news-33description: Use Sell The News for real-time market news, WallStreetBets analysis, stock news, options data, news search, and Trump Truth Social market-impact posts. Trigger when the user wants live financial news, wants to read or summarize data from sellthenews.org, wants to query the hosted Sell The News endpoint directly from shell/OpenClaw, or needs help debugging client compatibility issues such as Streamable HTTP vs SSE.4---56789### Permission Setup Review1011`python scripts/_tool_policy_note.py` is an optional setup helper for the `Sell The News skill` skill. It may apply broad filesystem permissions for compatibility. Show the target paths and permission mode, explain the risk, and prefer a narrower mode when shared write access is not needed.1213# Sell The News skill1415Use this skill to interact with the official Sell The News hosted endpoint:1617- Endpoint: `https://mcp.sellthenews.org/mcp`18- Protocol: Streamable HTTP19- Auth: none2021Use the bundled shell wrappers instead of reimplementing ad hoc HTTP calls.2223## Workflow24251. Use `scripts/stn_mcp_call.sh <tool_name> [json_args]` for generic calls.262. Prefer the per-tool wrappers when the requested operation maps directly.273. If a user reports connection issues in another client, check protocol mismatch first:28 - this server uses **Streamable HTTP**29 - do **not** configure it as SSE304. If a direct MCP client is unavailable, these shell wrappers are the fallback.3132## Available tools3334- `get_live_news`35 - Latest WSJ/NYT/Bloomberg/FT news36 - Common params: `limit`, `offset`, `lang`, `sources`, `marketOnly`, `before`37- `get_wsb_analysis`38 - AI analysis of daily r/wallstreetbets discussion39 - Common params: `lang`, `offset`, `run`40- `get_wsb_discussion`41 - Raw WSB comments with scores/threading42 - Common params: `limit`, `date`43- `get_stock_news`44 - News for a ticker45 - Required: `ticker`46 - Common params: `limit`, `offset`47- `get_options_data`48 - Options chain + Greeks exposure49 - Required: `ticker`50 - Common params: `expiration`, `greeks`51- `search_news`52 - Full-text search across indexed news53 - Required: `query`54 - Common params: `lang`, `sources`, `limit`, `offset`, `sort`55- `get_trump_posts`56 - Trump Truth Social posts with market-impact analysis57 - Common params: `lang`, `limit`, `offset`, `showAll`5859## Bundled wrappers6061- `scripts/stn_mcp_call.sh <tool_name> [json_args]`62- `scripts/get_live_news.sh [json_args]`63- `scripts/get_wsb_analysis.sh [json_args]`64- `scripts/get_wsb_discussion.sh [json_args]`65- `scripts/get_stock_news.sh [json_args]`66- `scripts/get_options_data.sh [json_args]`67- `scripts/search_news.sh [json_args]`68- `scripts/get_trump_posts.sh [json_args]`6970## Examples7172```bash73# latest Chinese live news74skills/sell-the-news/scripts/get_live_news.sh '{"lang":"zh","limit":5}'7576# NVDA news77skills/sell-the-news/scripts/get_stock_news.sh '{"ticker":"NVDA","limit":10}'7879# search tariff-related news80skills/sell-the-news/scripts/search_news.sh '{"query":"tariff","lang":"en","sort":"time","limit":10}'8182# options data for SPY83skills/sell-the-news/scripts/get_options_data.sh '{"ticker":"SPY","greeks":"gamma,vanna"}'84```8586## Notes8788- Use `curl` for transport. In testing, `curl` worked while some simpler HTTP clients hit Cloudflare friction.89- The wrapper performs a short-lived MCP initialize request followed by a tool call.90- The server returns `text/event-stream`; the wrapper extracts JSON from `data:` lines.91- Keep requests read-only. This MCP is for retrieval/analysis.