sellthenews-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sellthenews-mcpget the options summary and current WSB sentiment for NVDA"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sellthenews-mcp
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.
Architecture
sellthenews.org API → Adapters → Services → MCP Tools & ResourcesFour layers, each with one job:
Layer | What it does | Files |
Domain | Defines TypeScript types for all data shapes |
|
Adapters | Fetch raw JSON from upstream APIs (no processing) |
|
Services | Normalize raw data into clean domain objects |
|
MCP | Expose tools and resources to LLM clients |
|
Data flows left to right: the MCP layer calls services, services call adapters, adapters call the HTTP client.
Upstream APIs
Endpoint | Description |
| Latest news feed with pinned stories |
| Wall Street Bets daily analysis snapshot |
| Keyword-based news search |
| Options chain, GEX, and greek exposure |
MCP Tools
Tool | Description | Key inputs |
| Latest news stories |
|
| WSB daily analysis |
|
| Search news by keyword |
|
| Full options chain for a ticker |
|
| Concise options exposure summary |
|
MCP Resources
URI | Description |
| Latest news feed (ambient context) |
| Latest WSB snapshot (ambient context) |
Setup
npm install
npm run buildRun Locally
npm startThe 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.
Usage with Claude Desktop
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.
Project Structure
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 serverCurrent Status
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 messagesReal adapters for all four identified sellthenews endpoints
Service-layer normalization for news feeds, WSB snapshots, options chains, and options summaries
Live MCP tool and resource handlers wired to the service layer
Optional env-driven compatibility headers for private single-user testing when plain server-side requests hit upstream protection
Still pending:
Automated tests for adapters, services, and MCP smoke coverage
Better operational hardening if upstream failures or Cloudflare issues show up in practice
Stage 3 concerns such as caching, rate limiting, and production logging
Quick Smoke Check
Run
npm run buildRun
npm startConnect the server from Claude Desktop or an MCP inspector
Call
get_recent_newswith{ "limit": 2 }orget_options_summarywith{ "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.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swl007007/sellthenews_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server