Back to Registry View Author Profile
Official Verified
marsbit-crypto-news-skill
Crypto-native Web3 news and flash intelligence from MarsBit through hosted MCP. Use this for L1/L2 ecosystems, DeFi/CeFi, regulation, exchange flows, and market-moving events.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/domilin/marsbit-crypto-news-skillOr
MarsBit Crypto News Skill (Web3-focused)
This skill is designed to work immediately after installation using the hosted MCP endpoint.
MCP endpoint:
https://www.marsbit.co/api/mcp
Use this endpoint in all commands:
MCP_URL="https://www.marsbit.co/api/mcp"
Capabilities
Use this skill when users ask about:
- Crypto market-moving headlines
- Web3 ecosystem updates (Ethereum, Solana, Base, Arbitrum, etc.)
- DeFi protocols, CeFi exchanges, ETFs, policy and regulation
- Flash updates for short-term market sentiment
- Narrative discovery (RWA, AI x Crypto, DePIN, restaking, meme sectors)
Runtime rules
When user asks for crypto/Web3 information, call MCP tools via curl directly.
Required headers for every MCP POST:
Content-Type: application/jsonAccept: application/json, text/event-streammcp-protocol-version: 2025-11-25
Response parsing:
- MCP wraps tool output in
result.content[0].text textis a JSON string; parse it before answering- If
successisfalse, surface the error and ask user whether to retry with different params
Web3 answer format recommendation:
- TL;DR (1-2 lines)
- Market impact (
bullish/bearish/neutral+ why) - Key entities (token/protocol/chain/exchange/regulator)
- Sources with publication time
Tool calls
1) List tools (quick connectivity check)
curl -sS -X POST "$MCP_URL" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-protocol-version: 2025-11-25" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
2) Get news channels
curl -sS -X POST "$MCP_URL" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-protocol-version: 2025-11-25" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_news_channels","arguments":{}}}'
3) Get latest crypto/Web3 news
curl -sS -X POST "$MCP_URL" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-protocol-version: 2025-11-25" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"get_latest_news","arguments":{"limit":10}}}'
4) Search news by Web3 keyword
curl -sS -X POST "$MCP_URL" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-protocol-version: 2025-11-25" \
-d '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"search_news","arguments":{"keyword":"Ethereum Layer2","limit":10}}}'
5) Get one news detail by id
curl -sS -X POST "$MCP_URL" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-protocol-version: 2025-11-25" \
-d '{"jsonrpc":"2.0","id":5,"method":"tools/call","params":{"name":"get_news_detail","arguments":{"news_id":"20260304151610694513"}}}'
6) Get related news by id
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-domilin-marsbit-crypto-news-skill": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.