Connect AgentDeals MCP tools to n8n workflows via the MCP Server Trigger node. No-code pricing monitoring, vendor comparison, and stack planning automation.
n8n is a popular open-source workflow automation platform. With its MCP Server Trigger node, you can connect AgentDeals tools to n8n workflows — combining pricing intelligence with 400+ other integrations (Slack, email, databases, CRMs).
AgentDeals provides 4 MCP tools with data on 1,580+ developer deals across 65 categories: search_deals, compare_vendors, track_changes, and plan_stack.
1. Open your n8n instance and create a new workflow
2. Add an "MCP Server Trigger" node
3. In the node settings, configure the MCP server:
- Server URL: https://agentdeals.dev/mcp
- Transport: Streamable HTTP
4. The node will discover all 4 AgentDeals tools automatically
5. Connect the MCP Server Trigger to your downstream nodes
(e.g., Slack, Email, Google Sheets, HTTP Request)
n8n's MCP Server Trigger node handles the MCP protocol automatically. Once connected, you can use any AgentDeals tool in your workflow — the node exposes tool inputs as configurable fields.
For self-hosted n8n, you can also use the local stdio transport by running npx -y agentdeals as a subprocess.
Automatically check for pricing changes every week and post a summary to your team's Slack channel.
Workflow: Weekly Pricing Alerts
┌─────────────┐ ┌──────────────────┐ ┌────────────┐
│ Schedule │───▶│ MCP Server │───▶│ Slack │
│ (Weekly) │ │ track_changes │ │ #devops │
└─────────────┘ └──────────────────┘ └────────────┘
MCP Server Trigger configuration:
- Tool: track_changes
- Input: { "query": "recent pricing changes this week" }
Slack node:
- Channel: #devops-alerts
- Message: "🔔 Weekly Pricing Update\n{{ $json.output }}"When someone submits a vendor name via a form, automatically search AgentDeals and write results to a Google Sheet.
Workflow: Vendor Research Pipeline
┌──────────┐ ┌──────────────────┐ ┌──────────────┐
│ Webhook │───▶│ MCP Server │───▶│ Google Sheet │
│ (Form) │ │ search_deals │ │ "Research" │
└──────────┘ └──────────────────┘ └──────────────┘
MCP Server Trigger configuration:
- Tool: search_deals
- Input: { "query": "{{ $json.vendor_name }} free tier" }
Google Sheets node:
- Spreadsheet: "Vendor Research"
- Columns: Vendor, Free Tier, Limits, Risk Level, DateGenerate a cost estimate for a set of vendors and email the results to stakeholders.
Workflow: Stack Cost Report
┌─────────────┐ ┌──────────────────┐ ┌───────────┐
│ Schedule │───▶│ MCP Server │───▶│ Email │
│ (Monthly) │ │ plan_stack │ │ Report │
└─────────────┘ └──────────────────┘ └───────────┘
MCP Server Trigger configuration:
- Tool: plan_stack
- Input: {
"query": "Estimate costs for our stack: Vercel, Neon,
Clerk, Resend, Sentry at 10K MAU"
}
Email node:
- To: [email protected]
- Subject: "Monthly Stack Cost Report"
- Body: "{{ $json.output }}"AgentDeals exposes 4 MCP tools. Your n8n agent can call any of them:
search_dealsSearch 1,580+ deals by keyword, category, or vendor
compare_vendorsSide-by-side comparison of free tiers, limits, and risk
track_changesTrack pricing changes, removals, and new deals
plan_stackStack recommendations with cost projections at scale
Full tool documentation: /api/docs · Setup guide for more clients
Use AgentDeals tools directly in your AI editor. Works with Claude Desktop, Cursor, Cline, Windsurf, and any MCP-compatible client.
claude mcp add agentdeals -- npx -y agentdealsWorks with Claude Desktop, Cursor, Cline, Windsurf → Full setup guide
Connect AgentDeals to LangChain agents via langchain-mcp-adapters — Python code examples and multi-agent workflows
Connect AgentDeals to CrewAI agents via native mcps configuration — multi-agent pricing research workflows
Connect AgentDeals to Vercel AI SDK via experimental_createMCPClient() — React/Next.js code examples