Hosted MCP server - live

The cold email MCP server for AI agents

FoxReach hosts an MCP server at api.foxreach.io/mcp. 36 tools across leads, campaigns, sequences, templates, email accounts, and inbox - wired to Claude Desktop, Cursor, Claude Code, and any MCP-compatible framework. No SMTP, no API keys to manage, no middleware.

What is Model Context Protocol?

Model Context Protocol (MCP) is an open standard from Anthropic for connecting AI assistants to the systems where your data lives. Instead of writing a custom tool wrapper for every LLM and every product, MCP defines one server-side protocol that any MCP-compatible client can talk to.

The practical effect: an agent built on Claude Desktop, Cursor, Claude Code, or any framework with MCP support can manage your cold email workflow without you writing integration code. The agent sees FoxReach the same way a developer reads our API docs - as a named catalog of tools with typed inputs and outputs.

FoxReach was built MCP-first. We are the only cold email platform that shipped a production MCP server, SDKs, CLI, and Claude Code plugin as first-class surfaces rather than bolt-ons.

36 MCP tools across 6 capability groups

Each tool is typed, documented, and callable from any MCP client. Full schema in the MCP API reference.

Leads

7 tools

Full lead lifecycle: search, create, import from CSV, update, and delete. Pull per-lead activity history for context.

  • list_leads
  • get_lead
  • create_lead
  • import_csv_leads
  • update_lead
  • delete_lead
  • get_lead_activity

Campaigns

13 tools

Draft, start, pause, and resume campaigns. Assign leads and sending accounts, and pull per-campaign stats from a single prompt.

  • list_campaigns
  • get_campaign
  • create_campaign
  • update_campaign
  • delete_campaign
  • start_campaign
  • pause_campaign
  • resume_campaign
  • assign_leads_to_campaign
  • remove_lead_from_campaign
  • assign_accounts_to_campaign
  • remove_account_from_campaign
  • get_campaign_stats

Sequences

4 tools

Add, edit, and remove sequence steps. Control wait days, subject lines, and per-step conditions.

  • list_sequences
  • create_sequence
  • update_sequence
  • delete_sequence

Templates

5 tools

Persist reusable email templates across campaigns. Ideal for LLM-drafted copy that needs review before sending.

  • list_templates
  • get_template
  • create_template
  • update_template
  • delete_template

Email Accounts

2 tools

Inspect connected inboxes and their sending setup before assigning them to campaigns.

  • list_email_accounts
  • get_email_account

Inbox & Analytics

5 tools

Read threads, fetch full conversations, send replies, and pull inbox and workspace-level stats.

  • list_inbox_threads
  • get_inbox_conversation
  • send_inbox_reply
  • get_inbox_stats
  • get_workspace_overview

Quick start

Three ways to connect. Pick the one that matches your agent stack.

Claude Desktop

Settings > Connectors > Add custom connector, paste the URL, sign in with Google. Or add to claude_desktop_config.json

{
 "mcpServers": {
 "foxreach": {
 "command": "npx",
 "args": [
 "mcp-remote",
 "https://api.foxreach.io/mcp"
 ]
 }
 }
}

Cursor

Add to .cursor/mcp.json. Your browser opens for Google sign-in on first use.

{
 "mcpServers": {
 "foxreach": {
 "url": "https://api.foxreach.io/mcp"
 }
 }
}

Claude Code

One command in your terminal

claude mcp add foxreach \
 --transport http \
 "https://api.foxreach.io/mcp"

# Then inside Claude Code:
# /mcp -> foxreach -> Authenticate

Building on LangChain, CrewAI, or another code-first framework? Connect through npx mcp-remote https://api.foxreach.io/mcp as a stdio server - the first run opens a browser window for Google sign-in. Full examples for every framework in the MCP integration guide.

Works with every MCP client

No wrapper needed. If your client speaks MCP, FoxReach is already compatible.

Claude Desktop

Anthropic native client. Add the MCP URL under Settings > Connectors and it is live.

Claude Code

Terminal-native agent. Our MCP server plus the Claude Code plugin covers both paths.

Cursor

AI code editor. MCP support ships in the Pro tier.

OpenClaw

Open-source Claude Desktop alternative with MCP built in.

Paperclip

Multi-agent workspace with MCP tool registry.

Any MCP client

If it speaks Model Context Protocol, FoxReach works out of the box.

Drop-in for the agent framework you already use

Framework-specific integration guides ship in the blog. More dropping weekly.

LangChain

Via langchain-mcp-adapters

LangGraph

Same adapter, multi-step graphs

CrewAI

MCPToolAdapter for every crew

OpenAI Agents SDK

MCPServer primitive ships native

Claude Agent SDK

First-class MCP client

Vercel AI SDK

Via experimental_createMCPClient

Pydantic AI

Via pydantic-ai-mcp

Mastra

Registered as a tool provider

Composio

FoxReach tools exposed as Composio actions

FoxReach MCP vs. rolling your own

You can wire an agent to Mailgun or SendGrid and build the rest yourself. Here is what changes when you use FoxReach instead.

CapabilityFoxReach MCPRaw SMTP / Mailgun
Sends cold email
Inbox warmup built in -
Multi-sender rotation -
Bounce + reply handlingManual
Sequence state machineBuild your own
Reply categorization (AI) -
One-prompt campaign setup -
Deliverability analyticsDIY
Hours to ship an agent< 10 minDays to weeks

Built MCP-first, not bolted on

Most cold email platforms wrote their product in 2019, then in 2026 shipped an "MCP integration" that is really one REST endpoint behind a thin wrapper. The tools fit awkwardly, rate limits are shared with the dashboard, and documentation assumes you already know the underlying API.

FoxReach went the other way. The MCP server is a first-class surface alongside the REST API, Python SDK, TypeScript SDK, CLI, and Claude Code plugin. Every capability ships to every surface at the same time. Agents and humans operate on the same state machine.

Sign in with Google

The MCP server authenticates with a browser sign-in using the same email as your FoxReach account. No keys to copy, no headers to configure.

Hosted, not local

The server runs on FoxReach infrastructure. No Docker images to maintain, no local proxy processes.

Agent-shaped tools

Tools are named, typed, and scoped to the task an agent actually performs. No raw JSON trees.

Frequently asked questions

What is the FoxReach MCP server?
FoxReach hosts an MCP server at https://api.foxreach.io/mcp. It exposes 36 tools - leads, campaigns, sequences, templates, email accounts, and inbox - as first-class MCP tools so AI agents can manage your cold outreach using natural language.
Do I need to run anything locally?
No. The MCP server is hosted by FoxReach. You point your client at https://api.foxreach.io/mcp, sign in with Google using the same email as your FoxReach account, and every tool becomes available to your agent. No Docker, no server to run, nothing to deploy.
Which AI frameworks can use it?
Any framework with an MCP client works. That includes LangChain, LangGraph, CrewAI, OpenAI Agents SDK, Claude Agent SDK, Vercel AI SDK, Pydantic AI, Mastra, and Composio. See the Framework integrations section above for framework-specific guides.
What is the authentication model?
Google OAuth. When you connect, a browser window opens and you sign in with the same email you use for FoxReach. There are no API keys to manage for MCP - a short-lived session key is minted behind the scenes, and you can see it under Settings > API Keys in your dashboard.
Is there a free tier?
Yes. The FoxReach free plan includes 200 contacts, 500 emails per month, and full MCP server access. No credit card required, no expiring trial.

Ship your first agent in under 10 minutes

Free plan includes full MCP server access. No credit card, no expiring trial.