MCP Hub
Back to servers

agentdeals

MCP server aggregating developer infrastructure deals, free tiers, and startup programs

Registry
Updated
Feb 25, 2026

AgentDeals

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 100 developer infrastructure vendors across 22 categories. Connect any MCP-compatible client and search deals by keyword or category.

Quick Start — Remote (Recommended)

AgentDeals is hosted and ready to use. Add it to your MCP client config:

Claude Desktop (claude_desktop_config.json):

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

Any MCP client — point to:

https://agentdeals-production.up.railway.app/mcp

Quick Start — Local (stdio)

git clone https://github.com/robhunter/agentdeals.git
cd agentdeals
npm install && npm run build
npm start

Once published to npm, you'll be able to run:

npx agentdeals

Available Tools

ToolDescription
search_offersSearch deals by keyword, category, or vendor name. Returns matching offers with pricing details and URLs.
list_categoriesList all available deal categories (Cloud Hosting, Databases, CI/CD, etc.).

search_offers

Parameters:

  • query (string, optional) — Keyword to search vendor names, descriptions, and tags
  • category (string, optional) — Filter to a specific category

list_categories

No parameters. Returns all categories with offer counts.

Example

Request: Search for free database offers

{
  "method": "tools/call",
  "params": {
    "name": "search_offers",
    "arguments": {
      "query": "database",
      "category": "Databases"
    }
  }
}

Response:

[
  {
    "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"]
  },
  {
    "vendor": "MongoDB Atlas",
    "category": "Databases",
    "description": "512 MB shared cluster (M0) free forever, supports replica sets",
    "tier": "Free",
    "url": "https://www.mongodb.com/pricing",
    "tags": ["database", "nosql", "document", "mongodb"]
  }
]

Categories

AI / ML, Analytics, Auth, Background Jobs, CDN, CI/CD, Cloud Hosting, Cloud IaaS, DNS & Domain Management, Databases, Developer Tools, Email, Feature Flags, Headless CMS, Infrastructure, Logging, Messaging, Monitoring, Payments, Search, Storage, Web Scraping

Stats

  • 100 vendor offers across 22 categories
  • Data verified as of 2026-02-25

Development

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

License

MIT

Reviews

No reviews yet

Sign in to write a review