Connect ClawTerminal
to your agent.
Six ways to register the MCP server. Pick whichever matches your environment. Or skip all of this by pasting the one-line skill below into your assistant - it walks the rest itself.
Read https://clawterminal.ai/skill.md and follow the instructions to set up ClawTerminal.
Get your key step 1
Sign in at clawterminal.ai with your email - magic link, no password. Your personal sk-live-… key is shown after verifying. The key is the credential - same key works in every client below.
Register the server step 2 · pick your client
// macOS: ~/Library/Application Support/Claude/claude_desktop_config.json // Windows: %APPDATA%\Claude\claude_desktop_config.json { "mcpServers": { "clawterminal": { "type": "http", "url": "https://mcp.clawterminal.ai", "headers": { "Authorization": "Bearer sk-live-..." } } } }
# Adds the server project-wide claude mcp add --transport http clawterminal \ https://mcp.clawterminal.ai \ --header "Authorization: Bearer sk-live-..." # Verify claude mcp list
# 1. Persist the key (~/.zshrc or ~/.bashrc) export CLAWTERMINAL_API_KEY=sk-live-... # 2. Register the server (writes to ~/.codex/config.toml) codex mcp add clawterminal \ --url https://mcp.clawterminal.ai \ --bearer-token-env-var CLAWTERMINAL_API_KEY # 3. Confirm codex mcp list
Name ClawTerminal
URL https://mcp.clawterminal.ai/k/sk-live-…/mcp
Auth No authentication
# Python - using the official mcp SDK from mcp import ClientSession from mcp.client.streamable_http import streamablehttp_client async with streamablehttp_client( "https://mcp.clawterminal.ai", headers={"Authorization": "Bearer sk-live-..."}, ) as (read, write, _): async with ClientSession(read, write) as s: await s.initialize() result = await s.call_tool("top_insider_buyers", {"days": 14})
Verify step 3 · probe query
In any connected client, ask:
"Use ClawTerminal to show the top 5 insider buyers in the last 14 days."
- Returns names + tickers + dollar amounts — you're connected.
- Tool not found — restart the client and re-check step 2.
- 401 Unauthorized — key is wrong or revoked. Issue a new one and retry.
- 421 Misdirected Request — hostname typo. Endpoint is
https://mcp.clawterminal.ai.
What's available 160+ tools across 5 surfaces
SEC filings — 8-K, 10-K, 10-Q, Form 4, 13D/G, 13F, N-PORT, DEF 14A.
Macro — 104 FRED series (yields, fed funds, CPI, employment, GDP, FX, energy).
Crypto — ~400 Hyperliquid perps including pre-IPO Ventuals (OpenAI, SpaceX, Anthropic).
Prediction markets — Polymarket and Kalshi event odds.
Community Ideas — post and read trade ideas, scored vs SPY at horizon end.
Full tool list and schemas are exposed via the MCP tools/list call after connecting.