Cost Explorer MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Cost Explorer MCPEstimate my monthly cost for 1M input tokens and 500K output tokens using Sonnet."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cost Explorer MCP
An MCP App — a tool that returns a real interactive UI, rendered live inside the conversation, instead of just text. This one estimates Claude API costs: sliders for request volume and token size, a live comparison chart across five models, and a button that hands the picked model straight back to the conversation.
Hand-rolled JSON-RPC 2.0 over HTTP — no
@modelcontextprotocol/sdkon the server sideZero runtime dependencies — pure arithmetic, no external API call, so
tools/callcosts nothing to runDeploys as a single AWS Lambda function behind a Function URL
Files
File | Purpose |
| The server — JSON-RPC dispatch, plus |
| The pricing data and the |
| The app itself — sliders, model cards, an SVG bar chart |
| Bundles |
| Zero |
Related MCP server: claude-cost-mcp
Build
npm install
npm run buildProduces dist/mcp-app.html — a single file with CSS and JS inlined, required since the host
renders it in a sandboxed iframe under a strict CSP.
Deploy
Zip exactly three things: index.mjs, pricing.mjs, and dist/. Upload to a new Lambda
function (Node.js 22+, no native dependencies), set the MCP_API_KEY environment variable,
and create a Function URL with AuthType: NONE plus a CORS block:
Allow origin:
*Allow methods:
GET,POSTAllow headers:
content-type,x-api-key,mcp-protocol-version,mcp-session-id,last-event-id
The CORS block matters because a browser-based host preflights every call with an OPTIONS
request before the real one — without it, that preflight gets rejected and the app never
loads.
Connect
Add it as a custom connector in Claude Desktop or Claude web, using the Function URL with the
key appended as a query param (?key=...) — the connector dialog has no header field, so the
handler accepts the key via query string as a fallback to the x-api-key header.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-quality-maintenanceProvides intelligent analysis of token usage patterns and optimization recommendations to improve efficiency and reduce costs in Claude Code sessions. Offers real-time analysis, cost metrics, and actionable insights for better context window and tool usage optimization.3
- AlicenseAqualityCmaintenanceEstimates Claude API token counts, per-model cost, and prompt-caching break-even without an API key or network.5MIT
- FlicenseAqualityDmaintenanceEnables AI agents to compare AI model pricing plans, run cost scenarios, find break-even points, and get plan recommendations using TokenLens data.4
- Flicense-qualityDmaintenanceEnables AI cost calculation, comparison, and optimization across major providers like Anthropic, OpenAI, Google, Meta, and Mistral. Supports cost estimation, budget-aware model finding, and token estimation through a simple API and MCP integration.
Related MCP Connectors
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Live status, API pricing and rate limits for ChatGPT, Claude, Gemini, Cursor and 42+ AI tools.
23 agent tools + a measured per-call model cost dataset. No key needed to start.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/theaidrill/cost-explorer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server