CostBench MCP Server
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., "@CostBench MCP ServerGet the pricing and hidden costs for Salesforce."
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.
CostBench MCP Server
Verified software-pricing intelligence for any MCP client — true costs, hidden fees, negotiation data, price history, side-by-side comparisons, and total cost of ownership for 3,290+ products. Read-only, free, no API key, no signup.
Powered by CostBench.com. Every figure the server returns carries its source and date — the data is only as trustworthy as its provenance, so CostBench publishes the provenance with each number. Responses include an attribution field and per-entity links back to the sourced page.
Tools
Tool | Description |
| Full sourced pricing record for a product: tiers, hidden costs, contract terms, market data, sentiment, negotiation tips, TCO scenarios, and price history — each claim with its sources. Args: |
| The documented hidden / implementation / add-on costs (uplifts, onboarding fees, overages), each with a sourced quote + date. Args: |
| Sourced negotiation tactics with success-likelihood. Args: |
| Per-quarter price snapshots + trend — has the price changed? Args: |
| Side-by-side pricing for 2–4 products (starting price, median annual cost, free tier, ratings). Args: |
| Find products by |
| Total cost of ownership for a product and team size: sourced line items, year-one + multi-year totals, effective per-seat cost. Args: |
| Cost of an LLM/API workload (input + output tokens) for a usage-priced provider, from its real rate card. Args: |
All tools are read-only (readOnlyHint: true). Products are addressed by slug (e.g. salesforce, microsoft-teams, openai-api); use discover_software if you don't know one.
Related MCP server: toolradar-mcp
Option 1 — Remote endpoint (recommended, no install)
The server is hosted at https://costbench.com/mcp using streamable HTTP transport (MCP spec 2025-03-26). If your client supports remote MCP servers, point it straight at the endpoint:
{
"mcpServers": {
"costbench": {
"type": "streamable-http",
"url": "https://costbench.com/mcp"
}
}
}Claude Code:
claude mcp add --transport http costbench https://costbench.com/mcpOption 2 — Local stdio server (this package)
For clients that only speak stdio, this package bridges stdio ↔ the hosted endpoint:
{
"mcpServers": {
"costbench": {
"command": "npx",
"args": ["-y", "github:aadilr/costbench-mcp"]
}
}
}Or clone and run directly:
git clone https://github.com/aadilr/costbench-mcp.git
cd costbench-mcp
npm install
node index.jsOption 3 — Agent Skill / Claude Code plugin
This repo doubles as an Agent Skill and Claude Code plugin.
Any skills-capable agent (Claude Code, Codex CLI, Cursor, Gemini CLI, Copilot, and more):
npx skills add aadilr/costbench-mcpClaude Code plugin (bundles the MCP server + the skill):
/plugin marketplace add aadilr/costbench-mcp
/plugin install costbench@costbenchThe software-pricing skill prefers the MCP tools when connected and otherwise falls back to a bundled script (skills/software-pricing/scripts/pricing.sh) that talks to the hosted endpoint over plain HTTPS — no MCP client required.
Option 4 — Docker
docker build -t costbench-mcp .
docker run -i --rm costbench-mcpQuick test
# List the tools
curl -X POST https://costbench.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
# Get pricing for a product
curl -X POST https://costbench.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_pricing","arguments":{"slug":"salesforce","depth":"summary"}}}'The get_pricing call above returns a record like:
{
"slug": "salesforce",
"name": "Salesforce",
"category": { "slug": "crm", "name": "CRM" },
"priceRange": { "low": 0, "median": 100, "high": 550, "currency": "USD" },
"priceUnit": "user/month",
"tiers": [
{ "name": "Starter Suite", "priceMonthly": 25, "priceAnnual": 300, "priceUnit": "user/month" },
{ "name": "Pro Suite", "priceMonthly": 100, "priceAnnual": 1200, "priceUnit": "user/month" }
],
"attribution": "Source: CostBench (https://costbench.com) — verified, sourced software pricing intelligence."
}What's in the data
Products | 3,290+ |
Categories | 255 |
Comparisons | 5,850+ |
Coverage | Tiers, hidden costs, contract terms, negotiation data, price history, TCO, LLM rate cards |
Each field carries a license marker (owned | restricted): CostBench's own sourced research is owned; a small number of third-party market-data medians are restricted — surfaceable to a user but not licensed for commercial redistribution.
Environment variables
Variable | Default | Purpose |
|
| Override the upstream endpoint |
Privacy & limits
No authentication or account required. All tools are read-only — the server never writes anything.
Per-IP rate limiting: 60 requests/minute.
Data is sourced and dated; cite the
links.pageURL a response returns, not the bare number.
License
MIT
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
- AlicenseAqualityAmaintenanceInject real-time leaked B2B SaaS pricing, historical discounts, and aggressive negotiation playbooks directly into AI agents.161MIT
- AlicenseAqualityDmaintenanceGive your AI agent access to 8,400+ software tools — search, compare, get pricing, find alternatives, and discover the best tool for any use case.6122MIT
- Alicense-qualityBmaintenanceProvides AI agents with verified, monthly software pricing data for categories like VPNs and cloud backup, enabling price comparisons and identifying cheapest providers.MIT
- Alicense-qualityBmaintenanceA dated log of SaaS price changes across 494 tools: old price, new price and verification date for every move, plus category-level pulse and the biggest recorded increases.372MIT
Related MCP Connectors
Verified SaaS, AI, and LLM pricing for 490+ tools: plans, hidden costs, TCO, and alternatives.
B2B GTM stack intelligence: search ~400 tools, compare vendors, find overlaps, audit SaaS spend.
Software entry prices for 16 categories, with ratings and true 3-year cost. CC BY 4.0
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/aadilr/costbench-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server