loading…
Search for a command to run...
loading…
A read-only MCP server that provides access to financial news, Wall Street Bets sentiment analysis, and detailed options data from sellthenews.org. It enables L
A read-only MCP server that provides access to financial news, Wall Street Bets sentiment analysis, and detailed options data from sellthenews.org. It enables LLMs to retrieve real-time news feeds, search historical data, and analyze options chains or Greek exposure for specific tickers.
A read-only MCP (Model Context Protocol) server that wraps sellthenews.org API endpoints, making financial news and options data available as tools for LLMs like Claude.
sellthenews.org API → Adapters → Services → MCP Tools & Resources
Four layers, each with one job:
| Layer | What it does | Files |
|---|---|---|
| Domain | Defines TypeScript types for all data shapes | src/domain/*.types.ts |
| Adapters | Fetch raw JSON from upstream APIs (no processing) | src/adapters/*.adapters.ts |
| Services | Normalize raw data into clean domain objects | src/services/*.service.ts |
| MCP | Expose tools and resources to LLM clients | src/mcp/*.tools.ts |
Data flows left to right: the MCP layer calls services, services call adapters, adapters call the HTTP client.
| Endpoint | Description |
|---|---|
GET /api/live/recent |
Latest news feed with pinned stories |
GET /api/wsb/latest |
Wall Street Bets daily analysis snapshot |
GET /api/search |
Keyword-based news search |
GET /api/options/chain |
Options chain, GEX, and greek exposure |
| Tool | Description | Key inputs |
|---|---|---|
get_recent_news |
Latest news stories | limit, offset, lang, sources, marketOnly |
get_wsb_snapshot |
WSB daily analysis | lang |
search_news |
Search news by keyword | query, limit, offset, lang, sources, sort |
get_options_chain |
Full options chain for a ticker | ticker, expiration, greeks |
get_options_summary |
Concise options exposure summary | ticker |
| URI | Description |
|---|---|
sellthenews://news/recent |
Latest news feed (ambient context) |
sellthenews://wsb/latest |
Latest WSB snapshot (ambient context) |
npm install
npm run build
npm start
The server runs over stdio, so it is meant to be launched by an MCP client such as Claude Desktop or an MCP inspector rather than opened in a browser.
For private single-user compatibility testing, the HTTP client can also read SELLTHENEWS_USER_AGENT, SELLTHENEWS_COOKIE, SELLTHENEWS_ACCEPT_LANGUAGE, and SELLTHENEWS_REFERER from the environment and forward them as request headers when present.
Add this to your Claude Desktop MCP config file. On macOS it's at ~/Library/Application Support/Claude/claude_desktop_config.json, on Windows it's at %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"sellthenews": {
"command": "node",
"args": ["/REPLACE/WITH/YOUR/ACTUAL/PATH/sellthenews_MCP/dist/index.js"]
}
}
}
Important: Replace the path above with the actual absolute path to
dist/index.json your machine. For example, on Windows it might beC:\\Users\\yourname\\Desktop\\sellthenews_MCP\\dist\\index.js.
src/
domain/
shared.types.ts # Common types (SourceInfo, TickerMention, etc.)
news.types.ts # News domain: raw API types + clean domain types
options.types.ts # Options domain: raw API types + clean domain types
infra/
http-client.ts # HTTP client wrapping fetch()
adapters/
news.adapters.ts # 3 news adapters (live/recent, wsb, search)
options.adapters.ts # 1 options adapter (options/chain)
services/
news.service.ts # News normalization logic
options.service.ts # Options normalization logic
mcp/
news.tools.ts # News MCP tools + resources + Zod schemas
options.tools.ts # Options MCP tools + Zod schemas
index.ts # Entry point: wires layers, starts server
Stage 2A is complete. The repository now performs real upstream GET requests, normalizes raw responses into domain objects, and exposes live MCP tools/resources that return consistent JSON text.
Implemented now:
HttpClient.get() with URL building, timeout handling, JSON parsing, and clearer error messagesStill pending:
npm run buildnpm startget_recent_news with { "limit": 2 } or get_options_summary with { "ticker": "MU" }If upstream access works, the response should be pretty-printed JSON instead of placeholder text.
If upstream blocks plain server-side requests, retry your local run with SELLTHENEWS_USER_AGENT, SELLTHENEWS_COOKIE, SELLTHENEWS_ACCEPT_LANGUAGE, and SELLTHENEWS_REFERER set in the environment as needed.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"sellthenews-mcp": {
"command": "npx",
"args": []
}
}
}