Speko

Sprachagenten, Telefonanrufe, TTS, STT und Gesprächstranskripte

Dokumentation

MCP

Connect Speko to Claude Code, Codex, OpenCode, Cursor, and other AI coding tools.

Speko MCP gives coding agents authenticated access to organizations, agents, sessions, calls, phone numbers, knowledge bases, evals, deployment, migration helpers, and usage data.

Tool surfaces are bound to hostnames. This page documents the full surface at mcp.speko.ai; assistant directories are published on narrower hosts, listed under Directory hosts.

Install in your tool

Run the guided installer and choose OAuth browser sign-in:

npx @spekoai/mcp@latest init

The hosted endpoint is https://mcp.speko.ai/mcp. It uses stateless JSON HTTP with MCP 2026-07-28. Better Auth owns OAuth state while the MCP service validates every access token independently, so requests can reach any replica. Automation can instead use a Speko Platform API key from API keys.

MCP does not expose API-key lifecycle tools. Create and revoke product-wide Platform keys from API keys.

claude mcp add --transport http speko https://mcp.speko.ai/mcp

Add to ~/.codex/config.toml:

[mcp_servers.speko]
url = "https://mcp.speko.ai/mcp"

Add to opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "speko": {
      "type": "remote",
      "url": "https://mcp.speko.ai/mcp",
      "enabled": true
    }
  }
}

Open Cursor Settings > MCP > Add new global MCP server, then add:

{
  "mcpServers": {
    "speko": {
      "url": "https://mcp.speko.ai/mcp"
    }
  }
}

Configure a remote HTTP MCP server:

SettingValue
Namespeko
URLhttps://mcp.speko.ai/mcp
AuthenticationOAuth browser sign-in

For API-key automation, add Authorization: Bearer ${SPEKO_API_KEY} using the client's environment-variable syntax.

What to ask your agent

Once connected to mcp.speko.ai, ask your agent to:

  • inspect organization usage and credit balance;
  • create, update, deploy, or roll back agents;
  • create sessions and inspect call transcripts or recordings;
  • create phone numbers, knowledge bases, and evals;
  • convert external voice-agent configs with migration.workspace.inspect, migration.external_config.parse, and migration.session_config.build.

Directory hosts

Assistant directories run on their own hosts. Each surface is a property of the host — no query parameter, header, or account setting widens it.

HostToolsSurface
mcp.speko.ai101Full operational surface. Coding agents use this.
anthropic.speko.ai32Anthropic MCP Directory. Reads plus audio.transcribe.
chatgpt.speko.ai18OpenAI Plugin Directory.
builder-mcp.speko.ai12App builders (v0, Lovable, Bolt, Replit, Base44, Figma Make).

Anthropic MCP Directory

https://anthropic.speko.ai/mcp serves 32 tools: reads across agents, sessions, calls, transcripts, recordings, phone numbers, knowledge bases, credits and usage, plus audio.transcribe, docs.search and the migration helpers.

Six groups are absent from that host:

groupabsent
audio generationaudio.synthesize
live session / call creationsessions.create, sessions.phone.create, agents.test_call
agent configuration and deploymentagents.create, agents.update, agents.deploy, agents.rollback, agents.tools writes
knowledge-base and phone-number writesknowledge_bases writes, phone_numbers.create, phone_numbers.update
bulk evaluation and monitoringagents.evals.*, agents.monitors.*
irreversible and outward-facing writesagents.delete, phone_numbers.delete, knowledge_bases.delete, share_cards.create

Configuring an agent is equivalent to arming it — a deployed agent speaks on inbound traffic with no further tool call — so agent configuration is withheld alongside speech generation itself. audio.transcribe remains, because speech-to-text produces no audio and returns only text. Calling a withheld tool returns Unknown tool, indistinguishable from a name that was never registered.

To create agents, place calls, or synthesize speech, use mcp.speko.ai, the REST API, or an SDK.

[

Quickstart

From sign-up to your first transcribe call in under five minutes.

](https://docs.speko.ai/quickstart)[

Replit

Add voice — STT, TTS, and LLM with provider routing and failover — to any Replit app.

](https://docs.speko.ai/quickstart/replit)