Find the best infrastructure offers without leaving the workflow.
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 1,500+ developer infrastructure vendors across 54 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
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 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 latest
agentdeals.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 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.dev/mcp"
}
}
}
Quick Setup (.mcp.json)
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.
Quick Start
Try these example queries
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.
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.dev/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.dev/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.dev/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.dev/mcp"
}
}
}
REST API
AgentDeals also provides a REST API for programmatic access without MCP.
Search offers
# Search by keyword
curl "https://agentdeals.dev/api/offers?q=database&limit=5"
# Filter by category
curl "https://agentdeals.dev/api/offers?catego
Tools (2)
search_dealsSearch for developer infrastructure deals by keyword, category, or eligibility.track_changesRetrieve recent pricing changes and updates for developer tools.Configuration
{"mcpServers": {"agentdeals": {"command": "npx", "args": ["-y", "agentdeals"]}}}