Overview
FoxReach provides a hosted Model Context Protocol (MCP) server that lets AI agents manage your leads, campaigns, templates, and email accounts through natural language. No local installation required — just point your AI client athttps://api.foxreach.io/mcp and sign in with Google.
Supported clients: Claude Desktop, Cursor, Claude Code, and any MCP-compatible client.
Prerequisites
- A FoxReach account with an active workspace (sign-in email must match your Google account)
- A compatible MCP client installed
Setup
Claude Desktop
1
Open Claude Desktop settings
Go to Settings > Connectors > Add custom connector.
2
Add the FoxReach MCP server
Enter
FoxReach as the name and the following remote MCP server URL:3
Sign in with Google
Claude Desktop opens a browser window for Google sign-in. Use the same email as your FoxReach account. Once authorized, the MCP tools icon appears in the chat input area, confirming the connection.
Cursor
1
Open Cursor settings
Go to Settings > MCP in Cursor.
2
Add a new MCP server
Click Add new MCP server and configure it with the following JSON:
3
Verify connection
Cursor prompts you to authenticate — sign in with the Google account matching your FoxReach email. The server should show a green status indicator once connected.
Claude Code
Run this command in your terminal:/mcp inside Claude Code to complete the Google sign-in.
Available Tools
FoxReach exposes 36 tools across seven resource categories:Leads
Campaigns
Sequences
Templates
Email Accounts
Analytics
Inbox
Example Prompts
Once connected, you can use natural language to interact with FoxReach:- “List all my active campaigns” — calls
list_campaignswith status filter - “Create a lead for [email protected] at Acme Inc” — calls
create_lead - “Pause the campaign named Q1 Outreach” — calls
list_campaignsto find it, thenpause_campaign - “Show me all email templates” — calls
list_templates - “Draft a cold outreach template and save it” — AI writes the copy, then calls
create_template
Authentication
The MCP server authenticates with Google OAuth. Your MCP client opens a browser window for Google sign-in — use the same email address as your FoxReach account. Behind the scenes, FoxReach mints a short-lived session API key scoped to your personal workspace, so tool calls carry the same permissions and plan limits as the REST API. All communication is encrypted via HTTPS.Troubleshooting
Tools not appearing in Claude Desktop Make sure the URL in your config is exactlyhttps://api.foxreach.io/mcp. Restart Claude Desktop after making changes.
“401 Unauthorized” error
Your session has expired or the tokens are stale. Clear the server’s authentication in your MCP client and reconnect to re-run the Google sign-in.
“No FoxReach account found” error
The Google account you signed in with doesn’t match any FoxReach account email. Sign in with the email you use for FoxReach, or create an account first.
Connection drops or timeouts
Streamable HTTP connections are long-lived. Some network environments or proxies may drop idle connections. Your MCP client will automatically reconnect.
Tool calls returning errors
The MCP tools call the FoxReach REST API under the hood. Check the error message — it follows the same error format as the API (e.g., 404 for not found, 409 for duplicate email).