Run ReachOut with a local AI
Connect Claude Desktop, Claude CLI, Codex, Ollama, LM Studio, Cursor, or another MCP-enabled agent to ReachOut. Your contacts and campaigns stay on ReachOut's edge; the agent gets only the tools you connect.
Why run a local model?
- Privacy. Your prompts — including any contact data you mention — never leave your machine.
- Cost. Inference is free once the model is downloaded. Only the ReachOut MCP calls count against your plan.
- Compliance. Regulated industries (GDPR, HIPAA, finance) can keep all inference on-premises and still run full marketing automation.
- Any model. Works with Llama 3, Qwen 2.5, Mistral, Gemma, DeepSeek, Phi-4 — anything your MCP client can drive.
Before you start
- A ReachOut account — sign up free, no credit card.
- Your ReachOut API key — Studio → Settings → Agent access. Copy it now.
- One of the MCP clients below installed on your machine.
Step 1 — Get your API key
- Open Studio.
- Navigate to Settings → Agent access.
- Copy the saved key or paste a new key into the API key field and click Save.
Step 2 — Configure your MCP client
Ollama + any OpenAI-compatible MCP bridge
Ollama serves a local model at http://localhost:11434. Use
mcp-server-fetch
or a compatible bridge to expose MCP to Ollama. Then add ReachOut to the bridge config:
{
"mcpServers": {
"reachout": {
"transport": "http",
"url": "https://reachout-pulse-api.usereachout.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
} Replace YOUR_API_KEY with the key from Step 1. Restart the bridge. Ollama will now have access to all ReachOut MCP tools.
LM Studio
LM Studio 0.3+ has built-in MCP support. In the MCP panel, click Add server:
- Transport: HTTP
- URL:
https://reachout-pulse-api.usereachout.com/mcp - Authorization header:
Bearer YOUR_API_KEY
Save and reload. The ReachOut tool list will appear in the tools panel.
Claude Desktop
Add ReachOut as a remote HTTP MCP server. If your Claude Desktop build still uses the JSON config file, edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"reachout": {
"type": "http",
"url": "https://reachout-pulse-api.usereachout.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
} Restart Claude Desktop. You'll see ReachOut tools in the tool picker.
Claude CLI / Claude Code
Use the built-in MCP command to add the remote HTTP server:
claude mcp add --transport http reachout https://reachout-pulse-api.usereachout.com/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
claude mcp list Inside Claude Code, run /mcp to verify the server is connected.
Codex
Codex CLI and IDE extension share the same MCP configuration.
# ~/.codex/config.toml
[mcp_servers."reachout"]
url = "https://reachout-pulse-api.usereachout.com/mcp"
[mcp_servers."ReachOut".headers]
Authorization = "Bearer YOUR_API_KEY"
# Then verify:
codex mcp list Cursor
Open Cursor → Settings → MCP and add a new server:
{
"reachout": {
"transport": "http",
"url": "https://reachout-pulse-api.usereachout.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
} Save. Cursor's agent mode now has direct access to your contacts, campaigns, segments, and analytics.
Step 3 — Verify the connection
In your MCP client, send:
Which organization am I connected to? The model will call get_current_organization. A successful response looks like:
[organization] Acme Inc (id: org_abc123)
--------------------------------------------------------------
{
"organization": { "id": "org_abc123", "name": "Acme Inc", "slug": "acme" },
"result": {
"id": "org_abc123",
"name": "Acme Inc",
"slug": "acme",
"source": "user-linked API key"
}
}
Every tool response is prefixed with that [organization] header so you always know
which tenant is being acted on. If you see an auth error, double-check the API key and that
you pasted it without trailing spaces.
Step 4 — Run your first workflow
Try this prompt:
List my contacts, then show me my campaigns. Pick one campaign
and fetch its stats.
Your model will chain list_contacts → list_campaigns → get_campaign_stats.
Every step appears in the Studio audit log in real time — you can pause or cancel at any point.
Tips for working with local models
- Larger context window = better chaining. Models with 32k+ context handle multi-step campaign workflows more reliably (Llama 3 70B, Qwen 2.5 72B, Mistral Large).
- Confirm the org before writes. The
[organization]header on every response tells you which tenant is active — glance at it before approving anycreate_contactorsend_campaigncall. - Switch orgs without re-auth. One API key +
switch_organizationbeats juggling one key per tenant. The override lives in KV for 24h. - Tools are namespaced by verb.
list_*is read-only,get_*fetches a single row,create_*/send_*write. A cautious system prompt can whitelist just thelist_/get_tools.
Next steps
- MCP reference — auth, implicit org scoping, response envelope, and the full tool list.
- Full MCP tool manifest (JSON) — machine-readable schema with inputs, outputs, and side-effect docs.
- Machine-readable reference — data model, agent guidance, REST endpoints.
- Upgrade to Pro — 10,000 emails, 1,000 MCP calls, and 1,000 insights / month at $20 / seat.