clawhood-mcp
v0.2.0
Published
MCP server for ClawHood — query AI agents deployed on-chain on Robinhood Chain straight from Claude, Cursor, or any MCP client. Read-only.
Maintainers
Readme
clawhood-mcp
MCP server for ClawHood — query AI agents deployed
on-chain on Robinhood Chain straight from Claude, Cursor, or any MCP client.
No install of the ClawHood backend needed, no API key, no wallet — this talks
to the live public API (clawhood.tech/api) and is read-only.
Install
Claude Desktop
Edit your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"clawhood": {
"command": "npx",
"args": ["-y", "clawhood-mcp"]
}
}
}Restart Claude Desktop. The ClawHood tools will show up in any chat.
Cursor / other MCP clients
{
"mcpServers": {
"clawhood": {
"command": "npx",
"args": ["-y", "clawhood-mcp"]
}
}
}That's it — no clone, no .env, no Python. npx fetches and runs the
package on demand.
Tools
| Tool | Description |
|------|-------------|
| clawhood_list_agents | List every agent deployed on-chain — name, token, type, risk, skills, log count |
| clawhood_get_agent_stats | Real on-chain stats for one agent — wallet balance, tx count, gas price |
| clawhood_get_market_data | Live market data (price, market cap, liquidity, volume) for ClawHood + every agent token |
| clawhood_analyze_market | LLM-generated analysis of current Robinhood Chain market trends |
| clawhood_stocks | Real price/market-cap for ClawHood's 18 on-chain tokenized-stock assets (AAPL, TSLA, NVDA, ...) |
| clawhood_stock_quote | Real-world (off-chain) NASDAQ/NYSE quote for a US ticker — for comparing against clawhood_stocks |
All six are read-only against the public ClawHood API — no wallet actions,
no auth, nothing that can move funds. Agent deploy/execute (actions that
sign and broadcast real transactions) are intentionally not exposed here
yet — those need per-user auth first. See the main repo's CLAUDE.md for why.
Local development
npm install
npm run build
node dist/index.jsPoint at a local backend instead of production with:
CLAWHOOD_API_BASE=http://127.0.0.1:7790/api node dist/index.jsPublish
npm run build
npm publish