Odel
AlphaAI

AlphaAI

@makeevDeveloper Tools1PythonMITUpdated Yesterday

AI-enriched financial news for AI agents & trading bots: search, trending, insider, scored 1-10.

Server endpointStreamable HTTP

This server is hosted by a third party — Odel doesn't run or proxy it. Connecting to this URL talks directly to the upstream server. Managed auth and proxying through Odel are coming soon.

AlphaAI MCP server

Real-time, AI-enriched financial news for AI agents and trading bots — over the Model Context Protocol. Hosted at mcp.alphai.io, no install, OAuth (no API key to paste), free tier 100 calls/hour.

Every story is enriched with per-ticker analysis, a category (14 buckets), and a 1–10 relevance score, so an agent can filter to what actually matters before spending a reasoning token.

This repo is the public home of the hosted AlphaAI MCP server (the listing you'll find on Smithery, Glama, and the MCP Registry). The product is AlphaAI — a financial-news platform built for AI agents.

Connect

The server speaks Streamable HTTP at https://mcp.alphai.io/mcp. Add it to any OAuth-capable MCP client. Claude Code:

claude mcp add --transport http alphai https://mcp.alphai.io/mcp

The first tool call opens a browser for OAuth 2.1 — a login, no key to copy-paste. ChatGPT, Claude Desktop / claude.ai, Cursor, VS Code, Windsurf and Gemini connect the same way. Or use the one-click listing on Smithery.

Other clients

ClientConfig
Claude Desktop / claude.aiSettings → Connectors → Add custom connector → https://mcp.alphai.io/mcp
Cursor~/.cursor/mcp.json{ "mcpServers": { "alphai": { "url": "https://mcp.alphai.io/mcp" } } }
GenericStreamable HTTP, URL https://mcp.alphai.io/mcp, OAuth 2.1

Tools (11)

ToolWhat it does
alphai_news_searchFull-text + filtered news search (query, tickers, category, dates, relevance)
alphai_ticker_newsLatest news for one ticker (optionally incl. insider)
alphai_trendingBiggest stories of the last 48h by relevance
alphai_actionable_nowBreaking, decision-grade news (actionability + novelty gate)
alphai_insider_newsSEC Form 4 insider trades + 13F ownership moves as news
alphai_pair_analysisTwo-ticker read-across (news naming both companies)
alphai_articleFetch a single article by uid
alphai_tickersDiscover supported stock / ETF tickers
alphai_alerts_list / _subscribe / _unsubscribeManage your own ticker alert subscriptions (Basic/Pro)

All tools are read-only except the alphai_alerts_* writes, which only ever touch the caller's own subscriptions. Full schemas, params and defaults are advertised by the server (annotations included) and documented at alphai.io/mcp.

Tiers

FreeBasicPro
Price$0 (no card)$2.99/mo$9.99/mo
Rate limit100 / hour1,000 / hour10,000 / hour
Alert tools
Page size1010up to 50 (bulk)

Ready-made Claude Code skills

Drop-in skills that drive these tools (stock brief, market pulse, insider radar, peer read-across, manage alerts): makeev/alphai-claude-skills.

Links

Notes

  • This is a hosted server — to use it, connect to https://mcp.alphai.io/mcp; there is nothing to self-host. The product source lives in the AlphaAI backend; this repo is the catalog home + server.json manifest.
  • glama_server.py + Dockerfile are an introspection build: a tiny stdio server that declares the same 11 tools (identical names, schemas, descriptions, annotations) so MCP directories can read the tool catalog without OAuth. Its handlers don't run the queries — they point back at the hosted endpoint, where the real data and auth live.
  • News, not advice. The tools summarize reporting; they don't give buy/sell calls.
  • raw_text (full article bodies) is never served — copyright. Responses carry titles, AI summaries, per-ticker analysis, categories and relevance scores.

MIT licensed. Built by AlphaAI.