agentdeals

agentdeals

Search and compare free tiers, credits, and pricing changes across 1,500+ developer tools. 8 MCP tools for infrastructure decisions, cost estimation, and vendor comparison.

Category
访问服务器

README

AgentDeals

npm version npm downloads

An MCP server that aggregates free tiers, startup credits, and developer tool deals — so your AI agent (or you) can find the best infrastructure offers without leaving the workflow.

AgentDeals indexes real, verified pricing data from 1,500+ developer infrastructure vendors across 53 categories. Available on npm for local use or as a hosted remote server. Connect any MCP-compatible client and search deals by keyword, category, or eligibility.

Live: agentdeals-production.up.railway.app

Install

Option A: Claude Code Plugin (one-click)

Install AgentDeals in Claude Code with a single command:

claude plugin install robhunter/agentdeals

This auto-configures the remote MCP server — no local setup needed. All 12 tools, 5 prompt templates, and 2 skills are immediately available.

Option B: Claude Desktop Extension (one-click)

Install AgentDeals directly in Claude Desktop — no configuration needed:

  1. Download the latest agentdeals.mcpb from Releases
  2. Double-click the file to install in Claude Desktop
  3. All 12 tools and 5 prompt templates are immediately available

Or browse for AgentDeals in Claude Desktop under Settings > Extensions.

Option C: npx (local stdio)

No server needed. Runs locally via stdin/stdout:

{
  "mcpServers": {
    "agentdeals": {
      "command": "npx",
      "args": ["-y", "agentdeals"]
    }
  }
}

Option D: Remote HTTP

Connect to the hosted instance — no install required:

{
  "mcpServers": {
    "agentdeals": {
      "url": "https://agentdeals-production.up.railway.app/mcp"
    }
  }
}

Quick Start

2. Try these example queries

Find free database hosting:

Use the search_offers tool to find database deals:
  query: "database"
  category: "Databases"

Returns Neon (0.5 GiB free Postgres), Supabase (500 MB), MongoDB Atlas (512 MB shared cluster), PlanetScale alternatives, and more.

What pricing changes happened recently?

Use the get_deal_changes tool:
  since: "2025-01-01"

Returns tracked changes like PlanetScale free tier removal, Heroku free dynos sunset, Render pricing restructure, and other shifts.

Show deals I qualify for as a YC company:

Use the search_offers tool:
  eligibility_type: "accelerator"

Returns AWS Activate, Google Cloud for Startups, Microsoft Founders Hub, Stripe Atlas credits, and 150+ other startup program deals.

Client Configuration

Each client supports both local stdio (via npx) and remote HTTP. Stdio is recommended for reliability and speed.

Claude Desktop

Add to claude_desktop_config.json:

Stdio (recommended):

{
  "mcpServers": {
    "agentdeals": {
      "command": "npx",
      "args": ["-y", "agentdeals"]
    }
  }
}

Remote HTTP:

{
  "mcpServers": {
    "agentdeals": {
      "url": "https://agentdeals-production.up.railway.app/mcp"
    }
  }
}

Config location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursor

Add to .cursor/mcp.json in your project or global config:

Stdio (recommended):

{
  "mcpServers": {
    "agentdeals": {
      "command": "npx",
      "args": ["-y", "agentdeals"]
    }
  }
}

Remote HTTP:

{
  "mcpServers": {
    "agentdeals": {
      "url": "https://agentdeals-production.up.railway.app/mcp"
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your workspace:

Stdio (recommended):

{
  "servers": {
    "agentdeals": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "agentdeals"]
    }
  }
}

Remote HTTP:

{
  "servers": {
    "agentdeals": {
      "type": "http",
      "url": "https://agentdeals-production.up.railway.app/mcp"
    }
  }
}

Claude Code

Add to .mcp.json in your project root:

Stdio (recommended):

{
  "mcpServers": {
    "agentdeals": {
      "command": "npx",
      "args": ["-y", "agentdeals"]
    }
  }
}

Remote HTTP:

{
  "mcpServers": {
    "agentdeals": {
      "type": "url",
      "url": "https://agentdeals-production.up.railway.app/mcp"
    }
  }
}

REST API

AgentDeals also provides a REST API for programmatic access without MCP.

Search offers

# Search by keyword
curl "https://agentdeals-production.up.railway.app/api/offers?q=database&limit=5"

# Filter by category
curl "https://agentdeals-production.up.railway.app/api/offers?category=Databases&limit=10"

# Paginate results
curl "https://agentdeals-production.up.railway.app/api/offers?limit=20&offset=40"

# Combine search + category
curl "https://agentdeals-production.up.railway.app/api/offers?q=postgres&category=Databases"

Response:

{
  "offers": [
    {
      "vendor": "Neon",
      "category": "Databases",
      "description": "Serverless Postgres with 0.5 GiB storage, 100 CU-hours/month compute on free tier",
      "tier": "Free",
      "url": "https://neon.com/pricing",
      "tags": ["database", "postgres", "serverless"]
    }
  ],
  "total": 142
}

List categories

curl "https://agentdeals-production.up.railway.app/api/categories"

Response:

{
  "categories": [
    { "name": "Cloud Hosting", "count": 45 },
    { "name": "Databases", "count": 38 },
    { "name": "Developer Tools", "count": 414 }
  ]
}

More endpoints

# Recently added offers
curl "https://agentdeals-production.up.railway.app/api/new?days=7"

# Pricing changes
curl "https://agentdeals-production.up.railway.app/api/changes?since=2025-01-01"

# Vendor details
curl "https://agentdeals-production.up.railway.app/api/details/Supabase?alternatives=true"

# Stack recommendation
curl "https://agentdeals-production.up.railway.app/api/stack?use_case=saas"

# Cost estimation
curl "https://agentdeals-production.up.railway.app/api/costs?services=Vercel,Supabase&scale=startup"

# Compare vendors
curl "https://agentdeals-production.up.railway.app/api/compare?a=Supabase&b=Neon"

# Vendor risk check
curl "https://agentdeals-production.up.railway.app/api/vendor-risk/Heroku"

# Stack audit
curl "https://agentdeals-production.up.railway.app/api/audit-stack?services=Vercel,Supabase,Clerk"

# Server stats
curl "https://agentdeals-production.up.railway.app/api/stats"

# OpenAPI spec
curl "https://agentdeals-production.up.railway.app/api/openapi.json"

Available Tools

Tool Description
search_offers Search deals by keyword, category, eligibility, or vendor name. Supports pagination and sorting.
list_categories List all available deal categories with offer counts.
get_offer_details Get full details for a specific vendor, including related vendors in the same category.
get_new_offers Check recently added or updated deals, sorted newest first.
get_deal_changes Get recent pricing and free tier changes — removals, reductions, increases, restructures.
get_stack_recommendation Get a curated free-tier infrastructure stack for your project type (SaaS, API backend, static site, etc.).
estimate_costs Estimate infrastructure costs for your stack at hobby, startup, or growth scale.
compare_services Side-by-side comparison of two vendor free tiers, pricing, and differentiators.
check_vendor_risk Check if a vendor's free tier pricing is stable — risk level, change history, and safer alternatives.
audit_stack Audit your infrastructure stack for cost savings, pricing risks, and coverage gaps.

search_offers

Parameters:

  • query (string, optional) — Keyword to search vendor names, descriptions, and tags
  • category (string, optional) — Filter to a specific category (e.g. "Databases", "Cloud Hosting")
  • eligibility_type (string, optional) — Filter by type: public, accelerator, oss, student, fintech, geographic, enterprise
  • sort (string, optional) — Sort results: vendor (alphabetical), category (by category then vendor), newest (most recently verified)
  • limit (number, optional) — Maximum results to return
  • offset (number, optional) — Number of results to skip

list_categories

No parameters. Returns all categories with offer counts.

get_offer_details

Parameters:

  • vendor (string, required) — Vendor name (case-insensitive match)

get_new_offers

Parameters:

  • days (number, optional) — Number of days to look back. Default: 7

get_deal_changes

Parameters:

  • since (string, optional) — ISO date (YYYY-MM-DD). Only return changes on or after this date. Default: 30 days ago
  • change_type (string, optional) — Filter: free_tier_removed, limits_reduced, limits_increased, new_free_tier, pricing_restructured
  • vendor (string, optional) — Filter by vendor name (case-insensitive partial match)

get_stack_recommendation

Parameters:

  • use_case (string, required) — Project type: saas, api, static, mobile, ai_ml, ecommerce, devops
  • requirements (string, optional) — Additional requirements or preferences

estimate_costs

Parameters:

  • services (string, required) — Comma-separated list of vendor names (e.g. "Vercel,Supabase,Clerk")
  • scale (string, optional) — Scale tier: hobby, startup, growth. Default: hobby

compare_services

Parameters:

  • vendor_a (string, required) — First vendor name
  • vendor_b (string, required) — Second vendor name

check_vendor_risk

Parameters:

  • vendor (string, required) — Vendor name to check

audit_stack

Parameters:

  • services (string, required) — Comma-separated list of vendor names currently in use

Use Cases

Agent-assisted infrastructure selection

When your AI agent recommends infrastructure, it's usually working from training data — not current pricing. By connecting AgentDeals, the agent can:

  1. Compare free tiers: "I'm evaluating Supabase vs Neon vs PlanetScale for a side project" — the agent searches each vendor and compares current limits
  2. Check eligibility: "We're a YC W24 company, what credits can we get?" — the agent filters by eligibility_type: accelerator and returns applicable startup programs
  3. Verify before recommending: Before suggesting a vendor, the agent checks get_deal_changes to ensure the free tier hasn't been removed or reduced

Monitoring deal changes

Track pricing shifts that affect your stack:

  1. Check for changes: Call get_deal_changes with since: "2025-01-01" to see all tracked changes in the past year
  2. Filter by vendor: Call get_deal_changes with vendor: "Vercel" to see if Vercel's pricing has changed
  3. Filter by type: Call get_deal_changes with change_type: "free_tier_removed" to see which vendors have eliminated free tiers

Categories

AI / ML, AI Coding, API Development, API Gateway, Analytics, Auth, Background Jobs, Browser Automation, CDN, CI/CD, Cloud Hosting, Cloud IaaS, Code Quality, Communication, Container Registry, DNS & Domain Management, Databases, Design, Dev Utilities, Diagramming, Documentation, Email, Error Tracking, Feature Flags, Forms, Headless CMS, IDE & Code Editors, Infrastructure, Localization, Logging, Low-Code Platforms, Maps/Geolocation, Messaging, Mobile Development, Monitoring, Notebooks & Data Science, Payments, Project Management, Search, Secrets Management, Security, Server Management, Source Control, Startup Perks, Startup Programs, Status Pages, Storage, Team Collaboration, Testing, Tunneling & Networking, Video, Web Scraping, Workflow Automation

Development

npm install          # Install dependencies
npm run build        # Compile TypeScript
npm test             # Run tests (159 passing)
npm run serve        # Run HTTP server (port 3000)
npm start            # Run stdio server

Local development with stdio

npm start

Local development with HTTP

npm run serve
# Server starts at http://localhost:3000
# MCP endpoint: http://localhost:3000/mcp
# Landing page: http://localhost:3000/

Stats

  • 1,511 vendor offers across 53 categories
  • 52 tracked pricing changes
  • 10 MCP tools + 4 prompt templates + 12 REST API endpoints
  • 159 passing tests
  • Data verified as of 2026-03-14

Registries

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选