Who this page is for
If you’re using Claude Code or Codex CLI (terminal coding agents that have a shell), you don’t need MCP — those tools install the Python SDK directly. See Manage with Claude Code or Manage with Codex. MCP is for everything else.
Two ways MCP clients connect
kataven-mcp runs locally on your machine over stdio (a local pipe). Most AI apps connect to it directly. A few — ChatGPT, Claude.ai web, n8n — only accept remote MCP URLs over HTTPS, so you need a one-line tunnel to expose your local server publicly.
Building your own AI agent (LangGraph, Agno, AutoGen, OpenAI Agents SDK)? Stdio works directly — see Programmatic.
The universal pattern
Every client follows the same three steps:1
Install the MCP server
brew install python first; on Windows install official Python 3.10+. Full walkthrough: Install →.2
Mint an API key
hub.kataven.ai/settings → API Keys tab → Create API key. Copy the
sk_live_… value once.3
Configure your AI app
Pick your client from the table above. Each guide is one page; the JSON entry is identical everywhere — only the file path or UI button differs.
kataven_list_agents, kataven_create_agent, kataven_originate_call, …) appear in its tool picker.
What the AI can do
Real prompts that work oncekataven-mcp is wired up:
“Show me every agent and which phone number it’s pinned to. Anything pointing nowhere?”
“Create a ‘Tier 2 Support’ agent with a friendlier tone than the existing ‘Support’ agent. Attach the general-faqs playbook.”
“Place a test call from +12025550123 to my cell +14155550100 using the Front Desk agent. Show me the live transcript link.”
“Pause every running campaign — we’re deploying a fix.”Full list of exposed tools: see Install § What gets exposed.
Important reading before you go further
- Tunneling — required if you’re using ChatGPT, Claude.ai web, or n8n.
- Security — your
sk_live_is full account scope; treat it like a CI deploy key. - Troubleshooting — what to do when tools don’t appear.
- Programmatic — OpenAI Agents SDK, LangGraph, Agno, AutoGen.
Other ways to manage Kataven from AI
- Manage with Claude Code / Manage with Codex — terminal coding agents (no MCP needed; they use the SDK directly).
- Manage with AI overview — full decision matrix across every AI tool.

