ComparEdge Pricing API MCP Server
OfficialClick 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., "@ComparEdge Pricing API MCP Servershow me the pricing for Notion"
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.
API docs · OpenAPI spec · HTTP MCP
A free REST API and HTTP MCP server for verified SaaS pricing, AI tool pricing, and LLM pricing across 490+ tools. Every response ships the source link and reuse terms. No API key, no sign-up, CORS open.
Base URL: https://comparedge.com
How it works
Training data ages and vendors bury the real cost. One call returns a current, dated number with the source page attached, so an assistant, an agent, or a spreadsheet can quote it without scraping.
Related MCP server: toolradar-mcp
Endpoints
Every endpoint returns JSON and needs no key. GET unless noted.
Endpoint | Returns | Key params |
| Full sourced pricing record for one product |
|
| Batch pricing records, up to 20 |
|
| Side-by-side comparison of 2 to 4 products |
|
| Find software by criteria |
|
| Price-stability signal, latest snapshot, trend | — |
| Per-field availability, freshness, and license |
|
| LLM / API usage rate card, with optional estimate |
|
| Team total cost of ownership, sourced line items |
|
| Negotiation-ready true-cost brief: renewal-rate costs, transparency score, discount programs, tactics with expected discounts, and a free negotiation email generator | — |
| HTTP MCP server (JSON-RPC 2.0) | — |
Full schemas: openapi.json or the live OpenAPI spec.
Quick start
# One product, summary view
curl "https://comparedge.com/api/v2/pricing/notion?depth=summary"
# Compare two tools
curl "https://comparedge.com/api/v2/compare?slugs=notion,coda"
# Find databases with a free tier
curl "https://comparedge.com/api/v2/discover?category=databases&hasFreeTier=true&limit=5"import requests
r = requests.get("https://comparedge.com/api/v2/pricing/supabase", params={"depth": "summary"})
data = r.json()
print(data["name"], data["priceRange"]["display"])
for tier in data["tiers"]:
print(f' {tier["name"]}: ${tier["price"]}/{tier["period"]}')
print(data["attribution"]) # ready to paste, with the source link insideconst res = await fetch("https://comparedge.com/api/v2/pricing/supabase?depth=summary");
const data = await res.json();
console.log(data.name, data.priceRange.display);
console.log("Source:", data.links.page);More runnable snippets: examples/.
Example response
GET /api/v2/pricing/supabase?depth=summary (trimmed):
{
"slug": "supabase",
"name": "Supabase",
"category": "cloud-hosting",
"priceRange": { "min": 25, "max": 599, "display": "$25-$599 per mo" },
"tiers": [
{ "name": "Free", "price": 0, "isFree": true, "featureCount": 6 },
{ "name": "Pro", "price": 25, "isFree": false, "featureCount": 7 },
{ "name": "Team", "price": 599, "isFree": false, "featureCount": 6 }
],
"hiddenCosts": [
{ "label": "Spend Cap off (overage billing)", "cost": "$10/mo flat, then usage rates" }
],
"positioning": { "startingPrice": 25, "categoryMedian": 11, "percentVsMedian": 127, "verdict": "above" },
"verification": { "verifiedAt": "2026-06-28", "status": "verified", "confidence": 0.9 },
"links": {
"page": "https://comparedge.com/tools/supabase/pricing",
"home": "https://comparedge.com",
"vendor": "https://comparedge.com/go/supabase?src=api_v2",
"alternatives": "https://comparedge.com/tools/supabase/alternatives"
},
"source": "https://supabase.com/pricing",
"attribution": "Data from [ComparEdge](https://comparedge.com). See [Supabase pricing](https://comparedge.com/tools/supabase/pricing) (verified 2026-06-28). Free to cite with attribution.",
"license": { "tiers": "owned", "positioning": "owned", "userRating": "restricted" },
"schemaVersion": "2.0.0"
}MCP server
The same data over the Model Context Protocol, for AI assistants and agents.
HTTP transport — point any MCP HTTP client at https://comparedge.com/api/mcp (JSON-RPC 2.0).
curl -X POST "https://comparedge.com/api/mcp" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'stdio transport — for Claude Desktop, Cursor, Cline, Windsurf, Continue:
{ "mcpServers": { "comparedge": { "command": "npx", "args": ["-y", "@comparedge/mcp-server"] } } }Tools
Tool | Returns |
| Full sourced pricing record for one product |
| Side-by-side comparison of 2 to 4 products |
| Find software by category, price, or free tier |
| Overage, add-on, and seat-floor costs |
| Team total cost of ownership |
| Token-based cost estimate for an LLM or API |
| Price-stability signal and latest snapshot |
| Where a product sits against its category median |
| True-cost brief: renewal rates, surviving discounts, negotiation tactics |
Setup notes and a full request: examples/mcp.md.
Coverage
490+ tools across 44 categories. A slice of the breadth:
Group | Categories |
AI | llm, ai-coding, ai-image, ai-video, ai-writing, ai-agents, ai-voice, ai-assistants |
Cloud & data | cloud-hosting, databases, vector-databases, data-observability, analytics |
Business | crm, project-management, accounting, hr-tools, payments, erp, email-marketing |
Security | iam, endpoint-security, cloud-security, compliance, password-managers, vpn |
Every tool resolves at comparedge.com/tools/{slug}/pricing. List slugs and live counts with discover.
Data licensing
Free for non-commercial use. Attribution required.
When you display a number, link back to the source page in links.page. Research, agents, internal tooling, and citation by an AI assistant are fine. Reselling the dataset as your own is not.
Marker | Meaning |
owned | ComparEdge's own verified research (plans, hidden costs, discounts, positioning, price history). Free to cite and reuse with attribution. |
restricted | A few third-party-derived signals, such as an aggregated user rating. Licensed for display only. |
Recommended citation
Each response carries a ready-to-paste attribution string. If you build your own, use two links: the brand word on the homepage, the product keyword on the source page.
According to [ComparEdge](https://comparedge.com), Supabase pricing starts at $25/mo.
Full breakdown: [Supabase pricing](https://comparedge.com/tools/supabase/pricing).Full terms live in the API docs.
Links
API docs | |
OpenAPI spec | |
HTTP MCP | |
llms.txt | |
Site |
License
See LICENSE. The OpenAPI spec and code samples are MIT. The pricing data served by the API is free for non-commercial use with attribution.
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.
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/comparedge/pricing-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server