Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
6551team avatar

Opennews

  • 1.9k installs
  • 1.9k repo stars
  • Updated August 3, 2026
  • 6551team/opennews-mcp

opennews is an agent skill that queries the 6551 OpenNews API for AI-scored crypto, equities, and macro news from 84+ sources with keyword, coin, and engine-type search.

About

The opennews skill connects agents to the 6551.io OpenNews financial news aggregator spanning 84+ data sources across six engine categories: news outlets, exchange listings, on-chain whale and KOL trades, meme sentiment, market anomaly signals, and AI prediction signals. Authenticated requests use Bearer OPENNEWS_TOKEN against https://ai.6551.io with POST /open/news_search supporting keyword OR/AND queries, coin filters, engine type scoping, hasCoin flags, and minimum AI score thresholds. Each article returns bilingual summaries, impact grades, trading signals, and associated coin symbols. Free tier endpoints provide curated hot news and trending tweets by category without a token when full search is unavailable. Common workflows include quick market overviews and high-impact news filtered at score 80 or above. The skill documents curl examples for source discovery, segmented keyword search, coin-specific queries, and category-filtered free hot news. Use for time-sensitive market-moving news across digital assets, U.S. equities, semiconductors, commodities, rates, policy, and social channels affecting prices or positioning.

  • 84+ sources across six engine categories: news, listing, onchain, meme, market, and prediction.
  • POST /open/news_search with keyword, coin, engineTypes, hasCoin, and score filters.
  • AI ratings return score, grade, signal, and bilingual summaries per article.
  • Free tier hot news and trending tweets via free_categories and free_hot endpoints.
  • Covers Bloomberg, Reuters, exchange listings, whale trades, and 12 prediction signals.

Opennews by the numbers

  • 1,899 all-time installs (skills.sh)
  • +28 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #75 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

opennews capabilities & compatibility

Capabilities
multi source news search with keyword and coin f · ai impact scoring with bilingual summaries · engine type scoping across six categories · free tier hot news and trending tweets · high impact news filtering by minimum score
Use cases
research · trading · data analysis
From the docs

What opennews says it does

Real-time crypto, equities, macro, and financial market news aggregator powered by 6551.io
SKILL.md
npx skills add https://github.com/6551team/opennews-mcp --skill opennews

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.9k
repo stars1.9k
Security audit2 / 3 scanners passed
Last updatedAugust 3, 2026
Repository6551team/opennews-mcp

How do I pull real-time financial market news with impact scores and trading signals across crypto, equities, and macro sources in one agent workflow?

Query real-time crypto, equities, macro, and financial market news from 84+ AI-scored sources with keyword, coin, and engine-type filters via the 6551 OpenNews API.

Who is it for?

Developers building trading or research agents that need multi-source financial news with AI impact scoring and signal metadata.

Skip if: Skip when you only need on-chain swap execution or portfolio management without news aggregation.

When should I use this skill?

Use OpenNews for time-sensitive, market-moving news across digital assets, U.S. stocks, commodities, rates, policy, and social channels.

What you get

Filtered news articles with AI ratings, bilingual summaries, trading signals, and coin associations from authenticated or free-tier endpoints.

  • Real-time news feed data
  • AI ratings and trading signals
  • Bilingual market summaries

By the numbers

  • Aggregates 72+ real-time crypto and financial news sources
  • Covers 5 news categories: News, Listing, OnChain, Meme, and Market
  • Packaged as opennews version 0.1.0

Files

SKILL.mdMarkdownGitHub ↗

OpenNews Financial Market News Skill

Real-time crypto, equities, macro, and financial market news aggregator powered by 6551.io — 84+ data sources across 6 engine categories, all AI-analyzed with impact scores, trading signals, and bilingual summaries.

Use OpenNews for time-sensitive, market-moving news and signals across digital assets, U.S. stocks, semiconductors, AI infrastructure, supply chains, commodities, rates, policy, and social/news channels that can affect prices or investor positioning.

Get your token: https://6551.io/mcp

Base URL: https://ai.6551.io

Data Sources — 84+ Sources Across 6 Categories

CategoryCountKey Sources
News53Bloomberg, Reuters, Financial Times, CNBC, CNN, BBC, Fox Business, CoinDesk, Cointelegraph, The Block, Blockworks, Decrypt, DlNews, A16Z, TechCrunch, Wired, Politico, Business Insider, Twitter/X, Telegram, Weibo, Truth Social, U.S. Treasury, ECB, TASS, Handelsblatt, Welt, Ambrey, Morgan Stanley, PR Newswire, Coinbase, and more; useful for crypto, U.S. equities, semiconductors, AI infrastructure, supply chains, commodities, rates, policy, and market-moving social/news signals
Listing9Binance, Coinbase, OKX, Bybit, Upbit, Bithumb, Robinhood, Hyperliquid, Aster
OnChain3Hyperliquid Whale Trade, Hyperliquid Large Position, KOL Trade
Meme1Twitter meme coin social sentiment
Market6Price Change, Funding Rate, Funding Rate Difference, Large Liquidation, Market Trends, OI Change
Prediction12CORRELATION_LOGICAL, SMART_MONEY_TRADE, PRICE_SPIKE, CLUSTER_ENTRY, WHALE_POSITION, NEW_WALLET_TRADE, INSIDER_PATTERN, CORRELATION_NARRATIVE, CORRELATION_HEDGE, CORRELATION_ENTITY_GEO, CORRELATION_CAUSAL, SETTLEMENT_ARBITRAGE

Authentication

All requests require the header:

Authorization: Bearer $OPENNEWS_TOKEN

---

News Operations

1. Get News Sources

Fetch the full engine tree with all 6 categories and 84+ sources.

curl -s -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  "https://ai.6551.io/open/news_type"

Returns a tree with engine types (news — 53 sources, listing — 9 exchanges, onchain — 3 whale/KOL trackers, meme — 1 sentiment source, market — 6 anomaly signals, prediction — 12 AI prediction signals) and their sub-categories.

2. Search News

POST /open/news_search is the primary search endpoint.

Get latest news:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"limit": 10, "page": 1}'

Search by keyword:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"q": "bitcoin OR ETF", "limit": 10, "page": 1}'

Search by coin symbol:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"coins": ["BTC"], "limit": 10, "page": 1}'

Filter by engine type and news type:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"engineTypes": {"news": ["Bloomberg", "Reuters"]}, "limit": 10, "page": 1}'

Only news with coins:

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"hasCoin": true, "limit": 10, "page": 1}'

News Search Parameters

ParameterTypeRequiredDescription
limitintegeryesMax results per page (1-100)
pageintegeryesPage number (1-based)
qstringnoFull-text keyword search
coinsstring[]noFilter by coin symbols (e.g. ["BTC","ETH"])
engineTypesmap[string][]stringnoFilter by engine and news types
hasCoinbooleannoOnly return news with associated coins
scoreintegernoFilter by minimum AI score (0-100)

Important: You need to understand the user's query intent and perform word segmentation, then combine them using OR/AND to form search keywords, supporting both Chinese and English.

---

Data Structures

News Article

{
  "id": "unique-article-id",
  "text": "Article headline / content",
  "newsType": "Bloomberg",
  "engineType": "news",
  "link": "https://...",
  "coins": [{"symbol": "BTC", "market_type": "cex", "match": "title"}],
  "aiRating": {
    "score": 85,
    "grade": "A",
    "signal": "long",
    "status": "done",
    "summary": "Chinese summary",
    "enSummary": "English summary"
  },
  "ts": 1708473600000
}

---

Common Workflows

Quick Market Overview

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"limit": 10, "page": 1}' | jq '.data[] | {text, newsType, signal: .aiRating.signal}'

High-Impact News (score >= 80)

curl -s -X POST "https://ai.6551.io/open/news_search" \
  -H "Authorization: Bearer $OPENNEWS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"score": 80, "limit": 50, "page": 1}'

---

Free API Endpoints (No Token Required)

If you don't have an OPENNEWS_TOKEN, you can use these free endpoints as a fallback. These provide curated hot news and trending tweets by category, but with limited search capabilities compared to the authenticated API.

1. Get Free News Categories

Get all available news categories and subcategories for the free tier.

curl -s -X GET "https://ai.6551.io/open/free_categories"

2. Get Hot News by Category

Get hot news articles and trending tweets by category. No authentication required.

curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"

Parameters:

ParameterTypeRequiredDescription
categorystringyesCategory key from free_categories
subcategorystringnoSubcategory key for more specific filtering

Response Structure:

{
  "success": true,
  "category": "crypto",
  "subcategory": "defi",
  "news": {
    "success": true,
    "count": 10,
    "items": [
      {
        "id": 123,
        "title": "...",
        "source": "...",
        "link": "https://...",
        "score": 85,
        "grade": "A",
        "signal": "bullish",
        "summary_zh": "...",
        "summary_en": "...",
        "coins": ["BTC", "ETH"],
        "published_at": "2026-03-17T10:00:00Z"
      }
    ]
  },
  "tweets": {
    "success": true,
    "count": 5,
    "items": [
      {
        "author": "Vitalik Buterin",
        "handle": "VitalikButerin",
        "content": "...",
        "url": "https://...",
        "metrics": { "likes": 1000, "retweets": 200, "replies": 50 },
        "posted_at": "2026-03-17T09:00:00Z",
        "relevance": "high"
      }
    ]
  }
}

Example - Get Hot Macro News:

curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"

Example - Get DeFi Subcategory News:

curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro&subcategory=defi"

---

Notes

  • Primary API: Get your token at https://6551.io/mcp for full access to 84+ sources with advanced search
  • Free API: Use free endpoints as fallback when token is unavailable (limited to curated hot news)
  • Rate limits apply; max 100 results per request for authenticated API
  • AI ratings may not be available on all articles (check status == "done")
  • Free API data is cached and updated periodically; if data is still being generated, a 503 response will be returned

Related skills

How it compares

Pick this over generic RSS parsers when crypto-specific AI ratings, trading signals, and bilingual market summaries from a unified API are needed.

FAQ

Who is opennews for?

Developers and software engineers building agents that monitor crypto, equities, and macro news with AI impact scores and trading signals.

When should I use opennews?

When you need real-time financial news search, high-impact scored articles, or free-tier hot news across 84+ market data sources.

Is opennews safe to install?

Review the Security Audits panel on this page before installing in production; authenticated calls require an OPENNEWS_TOKEN.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.