01 · GETTING STARTED

Add to your agent

The hosted MCP server turns the whole outbound loop into tools for Claude, Cursor, or any MCP client. One URL, one header, eleven tools.

1

First: an account and a key

The MCP server authenticates with your API key — there is no anonymous access. Create your workspace at app.gtmrouter.dev (300 free credits), then create a key under API Keys. Every snippet below uses the placeholder YOUR_GTMROUTER_API_KEY — swap in your own.

2

Claude

Claude Code / CLI:

terminal
claude mcp add --transport http gtmrouter https://mcp.gtmrouter.dev/mcp \
  --header "Authorization: Bearer YOUR_GTMROUTER_API_KEY"

Claude Desktop / claude.ai — add a custom connector with URL https://mcp.gtmrouter.dev/mcp and the same Authorization header.

3

Cursor & other MCP clients

mcp.json
{
  "mcpServers": {
    "gtmrouter": {
      "url": "https://mcp.gtmrouter.dev/mcp",
      "headers": { "Authorization": "Bearer YOUR_GTMROUTER_API_KEY" }
    }
  }
}

Any client speaking MCP streamable-HTTP works the same way — n8n, custom agents, your own SDK loops.

4

What your agent can do

ToolWhat it doesCost
find_leadsSearch 200M+ contacts by title/industry/location0.2 cr/lead
enrichReveal verified email (+ mobile) for a person5 cr/hit
verify_emailDeliverability check incl. catch-all analysis1 cr
find_intentHiring / funding / news / tech signals per company5 cr/company
setup_sendingQuote & buy warmed sending capacityquote free
create_campaignDraft a sequenced campaign (never sends)free
launch_campaignLaunch — always pauses for your approvalfree
get_repliesRead replies, classifiedfree
get_usage · get_operation · get_requestBalance, async progress, request statusfree
🛡️ Agents cannot spend or send on their own. Purchases and launches return a confirmation token that a human must approve in the console before the action executes. Suppression is enforced server-side and re-checked at launch.
5

Try it

Once connected, paste this into your agent:

prompt
Find me 50 healthcare executives in the US, enrich the three most
promising into verified emails, check one for deliverability, and
draft a two-step outbound campaign. Do not launch anything.

That exact flow is our acceptance test — it runs end to end in one conversation and ends at a draft.