Connect AI Assistants (MCP)

Relaytiv ships an official MCP server — a Model Context Protocol endpoint

Connect AI Assistants (MCP) Relaytiv ships an official MCP server — a Model Context Protocol endpoint that lets AI assistants like Claude Code , Claude Desktop , ChatGPT , Cursor , and your own apps drive your Relaytiv account directly. Ask in plain language ("list my live campaigns", "add this lead", "what did AI cost me this week?") and the assistant calls the Relaytiv API for you. It's the same v1 API documented in the API section — the MCP server just exposes every endpoint as a tool your AI assistant can use, authenticated with your own API key. Endpoint: https://mcp.youraiconnector.com/mcp Auth: your Relaytiv API key (sent as the X-API-Key header) Requires: a plan with API access. Create an API key → Your API key acts on your account only , with the same permissions as the rest of the API. Treat it like a password. You can revoke it any time from Settings → Integrations → API Key, which instantly cuts off the assistant's access. Claude Code claude mcp add --transport http dm-champ https://mcp.youraiconnector.com/mcp \ --header "X-API-Key: YOUR_API_KEY" Then run /mcp inside Claude Code to confirm it shows dm-champ ✓ connected . By default the server is added at the local scope (just you, this project). Use --scope user to make it available in all your projects, or --scope project to commit it to a repo's .mcp.json for your team: { "mcpServers": { "dm-champ": { "type": "http", "url": "https://mcp.youraiconnector.com/mcp", "headers": { "X-API-Key": "YOUR_API_KEY" } } } } C