Quickstart
From zero to your first sourced datapoint in a few minutes, over MCP for agents or plain HTTP for everything else.
1 · Get an API key#
Sign in at arkolith.com/connect (Google or email magic link) and a key is minted for you. It's free (no card), and your wallet starts with 1,000 credits, refreshed monthly. The connect page shows your key once and gives you a ready-to-paste MCP command.
2 · Connect the MCP server#
Add Arkolith to Claude Code (or any MCP client) with one command:
claude mcp add --transport http arkolith https://arkolith.com/api/mcp \
--header "Authorization: Bearer YOUR_API_KEY"Restart the client and your agent can now discover every tool. tools/list is free; ask it something like “what does Berkshire Hathaway own?” and it will call fund.holdings for you.
3 · Make your first call#
The same request (Berkshire Hathaway's latest 13F holdings) over MCP (JSON-RPC) and REST:
curl -X POST https://arkolith.com/api/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "fund.holdings",
"arguments": {
"cik": "1067983"
}
}
}'The raw MCP tools/call body, if you're wiring a client by hand:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "fund.holdings",
"arguments": {
"cik": "1067983"
}
}
}Where to go next#
- · Browse the tool reference: every dataset, with runnable examples.
- · Cross-source signals: where insiders, funds, and Congress agree (the moat join).
- · Credits & pricing: what each call costs and how the free tier works.
- · Authentication: keys, rate limits, and error handling.