agentdeals

by robhunter

Not rated
GitHub

About

MCP server aggregating free tiers, startup credits & developer tool deals. 4 tools, 54 categories, 1,525+ offers.

Details

Author
robhunter
Categories
Search, Knowledge Base, Other

Setup

Install agentdeals in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/robhunter/agentdeals

Follow the installation instructions in the repository README, then restart your MCP client.

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 54 categories. Available onnpmfor local use or as a hosted remote server. Connect any MCP-compatible client and search deals by keyword, category, or eligibility.

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 4 tools and 6 prompt templates are immediately available.

Option B: Claude Desktop Extension (one-click)

Install AgentDeals directly in Claude Desktop — no configuration needed:
- Download the latestagentdeals.mcpbfrom
Releases
- Double-click the file to install in Claude Desktop
- All 4 tools and 6 prompt templates are immediately available

Or browse for AgentDeals in Claude Desktop underSettings > 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.jsonin 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.

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.

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 bothlocal stdio(via npx) andremote HTTP. Stdio is recommended for reliability and speed.

{ "mcpServers": { "agentdeals": { "command": "npx", "args": ["-y", "agentdeals"] } } }
{ "mcpServers": { "agentdeals": { "url": "https://agentdeals.dev/mcp" } } }

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

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

{ "mcpServers": { "agentdeals": { "command": "npx", "args": ["-y", "agentdeals"] } } }
{ "mcpServers": { "agentdeals": { "url": "https://agentdeals.dev/mcp" } } }

Add to.vscode/mcp.jsonin your workspace:

{ "servers": { "agentdeals": { "type": "stdio", "command": "npx", "args": ["-y", "agentdeals"] } } }
{ "servers": { "agentdeals": { "type": "http", "url": "https://agentdeals.dev/mcp" } } }
{ "mcpServers": { "agentdeals": { "command": "npx", "args": ["-y", "agentdeals"] } } }
{ "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"
{ "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"
{ "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" # OpenAPI spec curl "https://agentdeals.dev/api/openapi.json"

- 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,enterprise
- sort(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 offset

- mode(string, required) —recommend,estimate, oraudit
- use_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)

- 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)

- 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 vendor
- vendors(string, optional) — Comma-separated vendor names to filter
- include_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 free tiers: "I'm evaluating Supabase vs Neon for a side project" — usecompare_vendorswith both names
- Check eligibility: "We're a YC W24 company, what credits can we get?" — usesearch_dealswitheligibility: "accelerator"
- Verify before recommending: Usetrack_changesto ensure the free tier hasn't been removed or reduced

Track pricing shifts that affect your stack:
- Weekly digest: Calltrack_changeswith no params for a curated summary
- Filter by vendor: Calltrack_changeswithvendor: "Vercel"to see if Vercel's pricing has changed
- Filter by type: Calltrack_changeswithchange_type: "free_tier_removed"to see which vendors have eliminated free tiers

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

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 run serve # Server starts at http://localhost:3000 # MCP endpoint: http://localhost:3000/mcp # Landing page: http://localhost:3000/

- 1,525vendor offers across54categories
- 57tracked pricing changes
- 4MCP tools +6prompt templates +17REST API endpoints
- 266passing tests
- Data verified as of 2026-03-14

Search global news using natural language. Webz.io News Search API returns the most relevant articles and content, with filters for source, country, language, date, sentiment, and category.

Fetch, convert, and search AWS documentation pages, with recommendations for related content.

Search campgrounds around the world on campertunity, check availability, and provide booking links.

The Ferryhopper MCP Server exposes ferry routes, schedules and booking redirects so an AI assistant can discover connections across Europe and the Mediterranean and send users to Ferryhopper to complete bookings.

All-in-One SEO & Web Intelligence Toolkit API from FetchSERP.

MCP server that provides read-only access to HyperKitty, the web-based email archive component of Mailman 3.

At Sunrise Apps, we believe AI agents should be limitless, especially when it comes to visual data. We created ImageSorcery to bridge the critical gap in AI's ability to interact with and manipulate images directly, all while upholding the highest standards of privacy and security.

Just Domain is the domain registrar for businesses built with AI. Its remote MCP server checks availability and returns first-year and renewal pricing, plus a link to register on justdomain.ai, with DNS and WHOIS privacy in the same place. No account, no API key, read only. Endpoint: https://mcp.justdomain.ai/

Research tools, including a Sqlite-backed document stash

Semantic search over 9 free-license stock photo sources. Hosted remote server with OAuth — no API key to paste.

SerpApi MCP Server for Google and other search engine results

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.