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
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 bills on its own plan: a monthly tool-call allowance, its own key slots, and the tools each tier unlocks. Start free, no card.
Wire an assistant to live market data - no card, no expiry.
2,500
30
2
15
$9.99
For agents in production - 20x the tool calls and every premium window.
50,000
60
5
17
$29.99
For heavy agent fleets - our largest tool-call allowance and priority support.
250,000
120
10
18
Tool calls draw on your MCP plan only - your Data API and widget quotas are untouched. Checkout and billing happen here.
Works with your stack
Any MCP client that speaks Streamable HTTP can connect. Paste the endpoint, add your MCP 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 Bitculator server 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 calls from your monthly MCP allowance. The handshake itself draws no allowance.
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 MCP 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 your Bearer MCP 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 an MCP key
Mint it in the MCP console - the free plan needs no card. Data API and widget keys are not accepted.
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 spends one call from your MCP plan's monthly allowance.
$ 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.