← 返回 Skills 市场
infra403

opennews

作者 infra403 · GitHub ↗ · v1.0.0
darwinlinuxwin32 ✓ 安全检测通过
22024
总下载
30
收藏
25
当前安装
1
版本数
在 OpenClaw 中安装
/install opennews-mcp
功能描述
Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,...
使用说明 (SKILL.md)

OpenNews Crypto News Skill

Query crypto news from the 6551 platform REST API. All endpoints require a Bearer token via $OPENNEWS_TOKEN.

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

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

Authentication

All requests require the header:

Authorization: Bearer $OPENNEWS_TOKEN

News Operations

1. Get News Sources

Fetch all available news source categories organized by engine type.

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

Returns a tree with engine types (news, listing, onchain, meme, market) 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 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

Parameter Type Required Description
limit integer yes Max results per page (1-100)
page integer yes Page number (1-based)
q string no Full-text keyword search
coins string[] no Filter by coin symbols (e.g. ["BTC","ETH"])
engineTypes map[string][]string no Filter by engine and news types
hasCoin boolean no Only return news with associated coins

Data Structures

News Article

{
  "id": "unique-article-id",
  "text": "Article headline / content",
  "newsType": "Bloomberg",
  "engineType": "news",
  "link": "https://...",
  "coins": [{"symbol": "BTC", "market_type": "spot", "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 '{"limit": 50, "page": 1}' | jq '[.data[] | select(.aiRating.score >= 80)]'

Notes

  • Get your API token at https://6551.io/mcp
  • Rate limits apply; max 100 results per request
  • AI ratings may not be available on all articles (check status == "done")
安全使用建议
Install only if you trust the OpenNews/6551 service. Treat OPENNEWS_TOKEN like an API key, avoid putting secrets or sensitive personal data in search terms, and treat AI ratings or trading signals as informational rather than financial advice.
功能分析
Type: OpenClaw Skill Name: opennews-mcp Version: 1.0.0 The OpenNews skill is benign. It clearly defines its purpose as interacting with the OpenNews 6551 API for crypto news. All `curl` commands target the specified `https://ai.6551.io` endpoint, correctly use the `$OPENNEWS_TOKEN` for authentication, and process data locally with `jq`. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts against the agent in `SKILL.md`.
能力评估
Purpose & Capability
The stated purpose is crypto news search, source filtering, AI ratings, and trading-signal fields from the OpenNews/6551 API; the artifact examples align with that purpose and do not show trading, account mutation, or unrelated capabilities.
Instruction Scope
Runtime instructions are scoped to explicit curl requests to https://ai.6551.io endpoints with documented parameters and optional local jq filtering.
Install Mechanism
The package contains only SKILL.md and declares curl as the install dependency; there are no executable scripts, bundled binaries, or automatic setup commands.
Credentials
The OPENNEWS_TOKEN credential and user search parameters are sent to a third-party API, which is expected for this integration and disclosed by the base URL and authentication examples, though a clearer privacy warning would be useful.
Persistence & Privilege
No background workers, persistence mechanisms, local indexing, credential-store reads, privilege escalation, destructive commands, or file mutation are present.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install opennews-mcp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /opennews-mcp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the OpenNews crypto news skill. - Search and filter crypto news via the 6551 API, with support for keywords, coins, engine/source, and AI-based rating. - Provides access to real-time updates via WebSocket feeds. - Includes AI ratings, trading signals, and summary fields on articles. - Requires an API token via the OPENNEWS_TOKEN environment variable.
元数据
Slug opennews-mcp
版本 1.0.0
许可证
累计安装 25
当前安装数 25
历史版本数 1
常见问题

opennews 是什么?

Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 22024 次。

如何安装 opennews?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install opennews-mcp」即可一键安装,无需额外配置。

opennews 是免费的吗?

是的,opennews 完全免费(开源免费),可自由下载、安装和使用。

opennews 支持哪些平台?

opennews 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux, win32)。

谁开发了 opennews?

由 infra403(@infra403)开发并维护,当前版本 v1.0.0。

💬 留言讨论