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-23description: 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---56# Sell The News skill78Use this skill to interact with the official Sell The News hosted endpoint:910- Endpoint: `https://mcp.sellthenews.org/mcp`11- Protocol: Streamable HTTP12- Auth: none1314Use the bundled shell wrappers instead of reimplementing ad hoc HTTP calls.1516## Workflow17181. Use `scripts/stn_mcp_call.sh <tool_name> [json_args]` for generic calls.192. Prefer the per-tool wrappers when the requested operation maps directly.203. If a user reports connection issues in another client, check protocol mismatch first:21 - this server uses **Streamable HTTP**22 - do **not** configure it as SSE234. If a direct MCP client is unavailable, these shell wrappers are the fallback.2425## Available tools2627- `get_live_news`28 - Latest WSJ/NYT/Bloomberg/FT news29 - Common params: `limit`, `offset`, `lang`, `sources`, `marketOnly`, `before`30- `get_wsb_analysis`31 - AI analysis of daily r/wallstreetbets discussion32 - Common params: `lang`, `offset`, `run`33- `get_wsb_discussion`34 - Raw WSB comments with scores/threading35 - Common params: `limit`, `date`36- `get_stock_news`37 - News for a ticker38 - Required: `ticker`39 - Common params: `limit`, `offset`40- `get_options_data`41 - Options chain + Greeks exposure42 - Required: `ticker`43 - Common params: `expiration`, `greeks`44- `search_news`45 - Full-text search across indexed news46 - Required: `query`47 - Common params: `lang`, `sources`, `limit`, `offset`, `sort`48- `get_trump_posts`49 - Trump Truth Social posts with market-impact analysis50 - Common params: `lang`, `limit`, `offset`, `showAll`5152## Bundled wrappers5354- `scripts/stn_mcp_call.sh <tool_name> [json_args]`55- `scripts/get_live_news.sh [json_args]`56- `scripts/get_wsb_analysis.sh [json_args]`57- `scripts/get_wsb_discussion.sh [json_args]`58- `scripts/get_stock_news.sh [json_args]`59- `scripts/get_options_data.sh [json_args]`60- `scripts/search_news.sh [json_args]`61- `scripts/get_trump_posts.sh [json_args]`6263## Examples6465```bash66# latest Chinese live news67skills/sell-the-news/scripts/get_live_news.sh '{"lang":"zh","limit":5}'6869# NVDA news70skills/sell-the-news/scripts/get_stock_news.sh '{"ticker":"NVDA","limit":10}'7172# search tariff-related news73skills/sell-the-news/scripts/search_news.sh '{"query":"tariff","lang":"en","sort":"time","limit":10}'7475# options data for SPY76skills/sell-the-news/scripts/get_options_data.sh '{"ticker":"SPY","greeks":"gamma,vanna"}'77```7879## Notes8081- Use `curl` for transport. In testing, `curl` worked while some simpler HTTP clients hit Cloudflare friction.82- The wrapper performs a short-lived MCP initialize request followed by a tool call.83- The server returns `text/event-stream`; the wrapper extracts JSON from `data:` lines.84- Keep requests read-only. This MCP is for retrieval/analysis.