Stop Scraping News Sites: Let an AI-Powered MCP Server Feed Your Trading Data
You're building a trading bot, a market analysis tool, or just trying to keep a pulse on crypto without drowning in a dozen browser tabs. The problem is that real-time data is fragmented—news, exchange listings, on-chain whale movements, and funding rates all live in different silos. You could build scrapers for each one, but that's a maintenance nightmare. What if you could just ask your AI assistant to pull all of that context into a single, structured stream?
That's the idea behind OpenNews MCP Server. It's a Model Context Protocol (MCP) server that aggregates 85+ real-time data sources and hands them to your AI tools with AI-generated analysis already baked in. Instead of wiring up a dozen APIs, you get one token and a unified interface.
What It Does
OpenNews MCP is a straightforward MCP server—meaning it plugs directly into AI assistants like Claude Code or OpenClaw. You install it, set an environment variable with your API token from 6551.io, and your AI assistant gains access to a suite of tools that query external data sources.
The data is organized into six engine categories:
- News (55 sources): Bloomberg, Reuters, CoinDesk, Cointelegraph, Twitter/X, Telegram, and government bodies like the U.S. Treasury and ECB.
- Listing (9 sources): Binance, Coinbase, OKX, Bybit, Robinhood, and others—so you know when assets get listed or delisted.
- OnChain (2 sources): Hyperliquid whale trades and large position changes.
- Meme (1 source): Social sentiment tracking for meme coins on Twitter.
- Market (6 sources): Price changes, funding rates, large liquidations, and open interest changes.
- Prediction (12 sources): Pattern-based signals like SMART_MONEY_TRADE, PRICE_SPIKE, and WHALE_POSITION.
Every article or data point gets run through an AI analysis layer that assigns an impact score (0-100), a trading signal (long/short/neutral), and bilingual summaries in English and Chinese. The tech stack is lean—it uses mcp, httpx, and websockets—and the server only communicates with ai.6551.io.
Why It's Cool
The first thing that stands out is the sheer breadth of data in one place. You're not just getting news headlines; you're getting exchange listing updates, whale wallet movements, and funding rate divergences all through the same interface. That's genuinely useful if you're building a trading strategy that needs to correlate multiple signals.
The AI analysis layer is the clever part. Instead of raw data dumps, you get structured output with an impact score and a directional signal. That saves you from writing your own sentiment analysis or trying to gauge the significance of a Bloomberg article. The bilingual summaries are a nice touch for international teams, too.
The security review prompt baked into the README is a thoughtful design decision. They literally give you a copy-paste prompt to have your AI assistant audit the source code before you install it—checking that the API client only hits their endpoint, that tokens aren't hardcoded, and that no tools execute dangerous operations. In a world where MCP servers are a supply chain risk, that transparency builds trust.
The prediction engine is the most distinctive feature. Twelve pattern-based engines like CORRELATION_LOGICAL and CLUSTER_ENTRY suggest this isn't just a news aggregator—it's a signal generator. If you're into quant trading or systematic strategies, those pre-computed patterns could save you weeks of backtesting work.
How to Try It
You'll need an API token from https://6551.io/mcp first. Then installation depends on your AI assistant.
For Claude Code:
claude mcp add opennews \
-e OPENNEWS_TOKEN=<your-token> \
-- uv --directory /path/to/opennews-mcp run opennews-mcp
For OpenClaw:
export OPENNEWS_TOKEN="<your-token>"
cp -r openclaw-skill/opennews ~/.openclaw/skills/
If you're cautious (and you should be), the README includes a prompt you can paste to your AI assistant to review the source code before installing. It walks through the key files—api_client.py, config.py, the tool definitions—to verify there's no data exfiltration or dangerous operations. Worth doing if you're paranoid about third-party MCP servers.
Check out the full README on GitHub for the complete source list and installation details.
Final Thoughts
OpenNews MCP is best for developers who are already using AI assistants and want to enrich them with structured market data without maintaining a fleet of scrapers. The token-based access means it's a paid service, so it's not for casual hobbyists—but if you're building something that needs consistent, AI-analyzed market intelligence, the convenience is real. The prediction engines are the standout feature, and the security-first approach to onboarding is refreshing. It's a practical tool that fills a real gap between raw APIs and noisy RSS feeds.
Follow @githubprojects for more developer tools and open source projects.