Install
openclaw skills install marsbit-crypto-flashskillCrypto-native Web3 news and flash intelligence from MarsBit through hosted MCP. Use this for L1/L2 ecosystems, DeFi/CeFi, regulation, exchange flows, and mar...
openclaw skills install marsbit-crypto-flashskillThis skill is designed to work immediately after installation using the hosted MCP endpoint.
MCP endpoint:
https://www.marsbit.co/api/mcpUse this endpoint in all commands:
MCP_URL="https://www.marsbit.co/api/mcp"
Use this skill when users ask about:
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-25Response parsing:
result.content[0].texttext is a JSON string; parse it before answeringsuccess is false, surface the error and ask user whether to retry with different paramsWeb3 answer format recommendation:
bullish / bearish / neutral + why)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":{}}'
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":{}}}'
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}}}'
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}}}'
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"}}}'
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":6,"method":"tools/call","params":{"name":"get_related_news","arguments":{"news_id":"20260304151610694513","limit":6}}}'
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":7,"method":"tools/call","params":{"name":"get_latest_flash","arguments":{"limit":10}}}'
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":8,"method":"tools/call","params":{"name":"search_flash","arguments":{"keyword":"Solana meme","limit":10}}}'
get_latest_newsget_news_channelssearch_newsget_news_detailget_related_newsget_latest_flashsearch_flashUseful query patterns:
Ethereum, Solana, Base, Arbitrum, SuiUniswap, Aave, Jupiter, PendleRWA, DePIN, restaking, AI cryptohack, exploit, liquidation, SEC, ETFThis skill relies on the current marsbit-co hosted MCP implementation (/api/mcp), which internally uses:
fetcher(..., { marsBit: true }) in src/lib/utils.ts/info/news/channels, /info/news/shownews, /info/news/getbyid, /info/news/v2/relatednews/info/lives/showlives/info/assist/querySimilarityInfo (via src/lib/db-marsbit/agent)clawhub login
clawhub whoami
clawhub install domilin/marsbit-crypto-news-skill
openclaw skills list
You can install this skill directly from GitHub when ClawHub is unavailable (for example, rate-limit errors).
Repository:
https://github.com/domilin/marsbit-crypto-news-skillExample local install:
git clone https://github.com/domilin/marsbit-crypto-news-skill /tmp/marsbit-crypto-news-skill
mkdir -p ~/.openclaw/skills/marsbit-crypto-news-skill
cp -R /tmp/marsbit-crypto-news-skill/* ~/.openclaw/skills/marsbit-crypto-news-skill/
openclaw skills list
brew install curl