██████╗ ██████╗ ███████╗███╗ ██╗ ██████╗ █████╗ ████████╗ █████╗ ██╔═══██╗██╔══██╗██╔════╝████╗ ██║ ██╔══██╗██╔══██╗╚══██╔══╝██╔══██╗ ██║ ██║██████╔╝█████╗ ██╔██╗ ██║ ██║ ██║███████║ ██║ ███████║ ██║ ██║██╔═══╝ ██╔══╝ ██║╚██╗██║ ██║ ██║██╔══██║ ██║ ██╔══██║ ╚██████╔╝██║ ███████╗██║ ╚████║ ██████╔╝██║ ██║ ██║ ██║ ██║ ╚═════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝

ComparEdge Open Data Program

Free SaaS pricing intelligence for developers, researchers, and AI systems.
No API key. No paywall. No vendor sponsorship.

495
Products
44
Categories
2,132
Pricing Plans
318 (64%)
Free Tier
450
With G2 Rating
8
MCP Tools
495
Alternatives Pages
495
Expert Takes
Daily
Updated
$0
Cost

Live Data Feeds

Tools JSON:   comparedge.com/llms-tools.json
Pricing JSON: comparedge.com/llms-pricing.json
RSS Feed:     comparedge.com/feed.xml
MCP Server:   npx @comparedge/mcp-server

Auth .... None  ·  Format .... JSON / XML
Updated on each request (live data)

MCP Server docs

Downloads

AI & Developer Integrations

ComparEdge MCP Server

Zero-dependency Model Context Protocol server. Connects ComparEdge data directly to Claude, Cursor, VS Code, Windsurf, and any MCP-compatible AI assistant.
# Install
npx @comparedge/mcp-server

# npm
npm install -g @comparedge/mcp-server
# Claude Desktop config
{
  "mcpServers": {
    "comparedge": {
      "command": "npx",
      "args": ["@comparedge/mcp-server"]
    }
  }
}
search_tools(query)Natural language or keyword search
get_tool(slug)Full profile: pricing, rating, features
get_pricing(slug)All plans, tiers, free plan status
get_alternatives(slug)Ranked alternatives + trade-offs
compare_tools(tool1, tool2)Side-by-side comparison
list_category(category)Browse by category with filters
get_leaderboard(category?)Top-rated tools overall or by cat
list_categories()All 44 supported categories

Research & Citations

Zenodo .... 10.5281/zenodo.19825796
Figshare .. 10.6084/m9.figshare.32106871
Figshare .. 10.6084/m9.figshare.32108095
Kaggle .... 10.34740/kaggle/dsv/15955708
ORCID ..... 0009-0008-1162-5301
License ... CC BY 4.0
@dataset{comparedge2026,
  title  = {SaaS Pricing Dataset},
  author = {ComparEdge},
  year   = {2026},
  doi    = {10.5281/zenodo.19825796},
  url    = {comparedge.com/open-data}
}

MCP Server (Live Data)

Publications & Articles

Query Examples

-- Top rated free CRMs
SELECT name, overall_rating
FROM products
WHERE category_slug = 'crm'
  AND has_free_tier = 1
ORDER BY overall_rating DESC
LIMIT 5;
-- Avg price by category
SELECT category_slug,
  COUNT(*) as cnt,
  ROUND(AVG(starting_price),2)
FROM products
GROUP BY category_slug
ORDER BY 3 DESC;
-- Under $20 with 4.5+ rating
SELECT name, starting_price,
  overall_rating
FROM products
WHERE starting_price <= 20
  AND overall_rating >= 4.5
ORDER BY overall_rating DESC;
Pricing from public vendor pages. Null for "Contact Sales".
Not affiliated. Not sponsored. Not paid.