OpenAI Agents SDK
Python · JSHand the server to an OpenAI agent — or let OpenAI host the round-trip with the hosted MCP tool.
MCPServerStreamableHttp(url, headers)Get Bitculator on Android
Marketcap:
$2,051,425,551,736
24h Volume:
$108,268,859,460
Jul 12 Liquidations:
$0
24H Long/Short:
Coming soon
Bitculator MCP Server
Connect Claude, Cursor, or any MCP client to Bitculator with a single URL. Nineteen read-only tools serve live prices, full price history, sentiment, and exchange intelligence — precise to the last decimal.
get_prices({ "slugs": "bitcoin" }){ "price": "63520.780763913", "change_24h": 2.4 }MCP tool calls draw from the same monthly pool as your REST calls and spreadsheet pulls — one key, one quota, no separate bill.
Explore the full API surface with a generous monthly allowance.
10,000
30
15
$9.99
For production apps - five times the quota and premium indicator windows.
50,000
60
17
$29.99
For data-hungry platforms - our highest request quota and priority support.
250,000
120
18
Quotas are shared across REST, spreadsheets, and MCP. Checkout and billing live on the Data API page.
Works with your stack
Any MCP client that speaks Streamable HTTP can connect. Paste the endpoint, add your key, and the tools appear in the conversation.
The Claude and ChatGPT connector directories require OAuth sign-in — that listing is on our roadmap. Every key-based client works today.
See it think
A single request fans out into three tool calls — global snapshot, sentiment, movers — and comes back as one briefing with the receipts attached.
MCP keeps the model honest. Instead of reciting stale training data, your assistant calls the live Data API mid-conversation — and shows you exactly what it fetched before it says a word.
Every call visible
Each tool call and its raw result render inline. Nothing is asserted that wasn't fetched.
Every number exact
Prices arrive as decimal strings — never rounded through a float on the way to you.
Every tool read-only
The server quotes the market. It cannot trade, transfer, or touch your keys.
3 tool calls = 3 requests from your monthly pool. The handshake itself is free.
get_global_market({}){ "total_marketcap_usd": "2041882090114.57" }get_fear_greed({}){ "classification": "Neutral" }get_top_movers({ "interval": "24h" }){ "top_gainer": { "symbol": "XMR", "change_24h": 6.1 } }Agent frameworks
Because Bitculator speaks the open Model Context Protocol, there is nothing to wrap and no SDK to wait for. OpenAI Agents SDK, Vercel AI SDK, LangChain, LlamaIndex, Mastra, and Semantic Kernel all ship MCP clients — point them at the endpoint with your key and all 19 tools load as native functions.
Hand the server to an OpenAI agent — or let OpenAI host the round-trip with the hosted MCP tool.
MCPServerStreamableHttp(url, headers)One transport object and the tools drop straight into your Next.js app.
createMCPClient({ transport })The official adapters feed LangGraph agents — Bitculator becomes just another tool node.
MultiServerMCPClient({...})Turn the server into a ToolSpec and hand live market data to any LlamaIndex agent or workflow.
McpToolSpec(client=client)Register the server once and every Mastra agent in your project can quote the market.
new MCPClient({ servers })Mount the server as a kernel plugin and the 19 tools become functions your planner can call.
MCPStreamableHttpPlugin(url)One protocol, zero lock-in. Anything that speaks MCP over Streamable HTTP connects with the same two lines — endpoint plus Bearer key.
https://bitculator.com/mcpSixty-second setup
Three steps, no SDK, no code. The server speaks the open Model Context Protocol, so setup is just telling your client where to look.
Create a free API key
Every plan includes MCP access — the free tier needs no card.
Add the Bitculator server
Paste the endpoint and your key into your client. Pick your client in the tabs for the exact line.
Ask about the market
Your assistant now answers with live, decimal-exact Bitculator data instead of stale training knowledge.
Each tool call counts as one Data API request against your plan.
$ claude mcp add --transport http bitculator \
https://bitculator.com/mcp \
--header "Authorization: Bearer YOUR_API_KEY"Your input helps us keep things correct. Contact us if anything is incorrect or missing.