by robhunter
Aggregates and provides searchable access to free tiers, startup credits, and developer tool deals across over 1,500 vendors and 54 categories.
Aggregates and provides searchable access to free tiers, startup credits, and developer tool deals across over 1,500 vendors and 54 categories, keeping pricing data verified and up‑to‑date.
npx -y agentdeals to start a stdio server.claude plugin install robhunter/agentdeals (auto‑configures remote server)..mcpb release and install.https://agentdeals.dev/mcp..mcp.json (or client‑specific config) in the project root with the chosen server definition.search_deals, plan_stack, compare_vendors, track_changes) or use the REST API endpoints for programmatic access.Q: Do I need to run a server?
A: No. You can use the hosted HTTP endpoint or run a local stdio server via npx.
Q: Which clients are compatible?
A: Any MCP‑compatible client such as Claude Code, Claude Desktop, Cursor, VS Code, and others that read .mcp.json.
Q: How often is the data refreshed?
A: Data is regularly verified; the latest snapshot is dated 2026‑03‑14.
Q: Is there any cost to use Agent Deals?
A: The service and its MCP/REST interfaces are free; it only surfaces free‑tier or credit‑based offers from vendors.
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 60 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.dev
Free tiers for AI and LLM APIs: a dated, sourced list of 31 vendors, regenerated from the catalogue whenever a record moves. Every row carries the date we last read that vendor's own page and the URL we read it on, and the rows whose terms changed carry the terms they replaced.
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 4 tools and 6 prompt templates are immediately available.
Install AgentDeals directly in Claude Desktop — no configuration needed:
agentdeals.mcpb from ReleasesOr browse for AgentDeals in Claude Desktop under Settings > Extensions.
No server needed. Runs locally via stdin/stdout:
{
"mcpServers": {
"agentdeals": {
"command": "npx",
"args": ["-y", "agentdeals"]
}
}
}
Connect to the hosted instance — no install required:
{
"mcpServers": {
"agentdeals": {
"url": "https://agentdeals.dev/mcp"
}
}
}
Add AgentDeals to any project by dropping this .mcp.json in the project root:
{
"mcpServers": {
"agentdeals": {
"url": "https://agentdeals.dev/mcp"
}
}
}
This works with Claude Code, Cursor, and other MCP-compatible clients that read .mcp.json.
Find free database hosting:
Use the search_deals tool:
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 track_changes tool (no params for weekly digest, or filter):
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_deals tool:
eligibility: "accelerator"
Returns AWS Activate, Google Cloud for Startups, Microsoft Founders Hub, Stripe Atlas credits, and 150+ other startup program deals.
Each client supports both local stdio (via npx) and remote HTTP. Stdio is recommended for reliability and speed.
Add to claude_desktop_config.json:
Stdio (recommended):
{
"mcpServers": {
"agentdeals": {
"command": "npx",
"args": ["-y", "agentdeals"]
}
}
}
Remote HTTP:
{
"mcpServers": {
"agentdeals": {
"url": "https://agentdeals.dev/mcp"
}
}
}
Config location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd 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.dev/mcp"
}
}
}
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.dev/mcp"
}
}
}
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.dev/mcp"
}
}
}
AgentDeals also provides a REST API for programmatic access without MCP.
# Search by keyword
curl "https://agentdeals.dev/api/offers?q=database&limit=5"
# Filter by category
curl "https://agentdeals.dev/api/offers?category=Databases&limit=10"
# Paginate results
curl "https://agentdeals.dev/api/offers?limit=20&offset=40"
# Combine search + category
curl "https://agentdeals.dev/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
}
curl "https://agentdeals.dev/api/categories"
Response:
{
"categories": [
{ "name": "Cloud Hosting", "count": 45 },
{ "name": "Databases", "count": 38 },
{ "name": "Developer Tools", "count": 414 }
]
}
# Recently added offers
curl "https://agentdeals.dev/api/new?days=7"
# Pricing changes
curl "https://agentdeals.dev/api/changes?since=2025-01-01"
# Vendor details
curl "https://agentdeals.dev/api/details/Supabase?alternatives=true"
# Stack recommendation
curl "https://agentdeals.dev/api/stack?use_case=saas"
# Cost estimation
curl "https://agentdeals.dev/api/costs?services=Vercel,Supabase&scale=startup"
# Compare vendors
curl "https://agentdeals.dev/api/compare?a=Supabase&b=Neon"
# Vendor risk check
curl "https://agentdeals.dev/api/vendor-risk/Heroku"
# Stack audit
curl "https://agentdeals.dev/api/audit-stack?services=Vercel,Supabase,Clerk"
# Server stats
curl "https://agentdeals.dev/api/stats"
# Traffic attributed by client class (AI agent / crawler / browser), and web vs MCP
curl "https://agentdeals.dev/api/traffic"
# OpenAPI spec
curl "https://agentdeals.dev/api/openapi.json"
| Tool | Description |
|---|---|
search_deals |
Find free tiers, startup credits, and developer deals for cloud infrastructure, databases, hosting, CI/CD, monitoring, auth, AI services, and more. |
plan_stack |
Plan a technology stack with cost-optimized infrastructure choices. Recommends free-tier services, estimates costs, or audits existing stacks. |
compare_vendors |
Compare developer tools side by side — free tier limits, pricing tiers, and recent pricing changes. |
track_changes |
Track recent pricing changes across developer tools — free tier removals, limit reductions, new free tiers, and expirations. |
Parameters:
query (string, optional) — Keyword search (vendor names, descriptions, tags)category (string, optional) — Filter by category. Pass "list" to get all categories with counts.vendor (string, optional) — Get full details for a specific vendor (fuzzy match). Returns alternatives.eligibility (string, optional) — Filter: public, accelerator, oss, student, fintech, geographic, enterprisesort (string, optional) — Sort: vendor (A-Z), category, newest (recently verified first)since (string, optional) — ISO date. Only return deals verified/added after this date.limit (number, optional) — Max results (default: 20)offset (number, optional) — Pagination offsetParameters:
mode (string, required) — recommend, estimate, or audituse_case (string, optional) — What you're building (for recommend mode)services (array, optional) — Current vendor names (for estimate/audit mode)scale (string, optional) — hobby, startup, growth (for estimate mode, default: hobby)requirements (array, optional) — Specific infra needs (for recommend mode)Parameters:
vendors (array, required) — 1 or 2 vendor names. 1 = risk check, 2 = side-by-side comparison.include_risk (boolean, optional) — Include risk assessment (default: true)Parameters:
since (string, optional) — ISO date. Default: 7 days ago.change_type (string, optional) — Filter: free_tier_removed, limits_reduced, limits_increased, new_free_tier, pricing_restructured, etc.vendor (string, optional) — Filter to one vendorvendors (string, optional) — Comma-separated vendor names to filterinclude_expiring (boolean, optional) — Include upcoming expirations (default: true)lookahead_days (number, optional) — Days to look ahead for expirations (default: 30)When your AI agent recommends infrastructure, it's usually working from training data — not current pricing. By connecting AgentDeals, the agent can:
compare_vendors with both namessearch_deals with eligibility: "accelerator"track_changes to ensure the free tier hasn't been removed or reducedTrack pricing shifts that affect your stack:
track_changes with no params for a curated summarytrack_changes with vendor: "Vercel" to see if Vercel's pricing has changedtrack_changes with change_type: "free_tier_removed" to see which vendors have eliminated free tiersAI / 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
npm install # Install dependencies
npm run build # Compile TypeScript
npm test # Run tests (266 passing)
npm run serve # Run HTTP server (port 3000)
npm start # Run stdio server
npm start
npm run serve
# Server starts at http://localhost:3000
# MCP endpoint: http://localhost:3000/mcp
# Landing page: http://localhost:3000/
| Variable | Description | Default |
|---|---|---|
PORT |
HTTP server port | 3000 |
BASE_URL |
Base URL for canonical links, OG tags, sitemaps, and feeds | https://agentdeals.dev |
GOOGLE_SITE_VERIFICATION |
Google Search Console verification code | (none) |
MIT
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
{
"mcpServers": {
"agentdeals": {
"command": "npx",
"args": [
"-y",
"agentdeals"
],
"env": {}
}
}
}claude mcp add agentdeals npx -y agentdeals