spekoai-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@spekoai-mcpcreate a new voice session for my customer support demo"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
spekoai-mcp
Model Context Protocol server for SpekoAI. The hosted server exposes one authenticated endpoint:
https://mcp.speko.ai/mcpIt supports OAuth for interactive MCP clients and Speko API keys for clients that can send custom request headers.
Install in an MCP client
OAuth-capable clients:
{
"mcpServers": {
"spekoai": {
"url": "https://mcp.speko.ai/mcp"
}
}
}API-key clients:
{
"mcpServers": {
"spekoai": {
"url": "https://mcp.speko.ai/mcp",
"headers": {
"Authorization": "Bearer sk_live_xxx"
}
}
}
}Related MCP server: VoIPBin MCP Server
Surfaces
The hosted server exposes the operational tools below plus a docs self-serve
surface: the docs.search tool (full-text search over bundled Speko docs)
and the spekoai://docs/index + spekoai://docs/{slug} resources. MCP
prompts, components, and scaffolding tools are not advertised.
Tool names use domain/action dot notation for client grouping.
Builder profile
App builders (v0, Lovable, Bolt, Replit, Base44, Figma Make) can add the server with a curated, right-sized preset instead of the full operational surface:
https://mcp.speko.ai/mcp?profile=builderAuth is identical to /mcp (same OAuth flow, same API-key header). The
builder profile advertises exactly these tools:
docs.search— bundled Speko docs searchvoices.list— TTS voice + provider catalogmodels.list— STT/LLM/TTS/S2S provider+model catalog (allowedProvidersids)agents.list/agents.get— read agent configsagents.preview_stacks— the stack previewagents.createrequires firstcalls.get/sessions.transcript.get/calls.recording.get— theagents.test_callreview path (poll the call, read transcript/recording)code_snippets.get— ready-to-paste integration code (web voice call + server-side session mint) fornextjs,react,node,python, orcurlagents.create/agents.test_call— the only writes
voices.list, models.list, and code_snippets.get exist only in the
builder profile. Any other profile value (or none) serves the default
surface below, unchanged. Note that MCP tools only inform the builder's
agent during code generation — the generated app cannot call MCP tools at
runtime. Runtime integration is a SPEKO_API_KEY environment variable
plus the SDKs, which is exactly what code_snippets.get returns.
Account
organization.getcredits.balance.getcredits.ledger.listusage.summary.get
Agents and Tools
agents.listagents.createagents.getagents.updateagents.deleteagents.tools.listagents.tools.createagents.tools.getagents.tools.updateagents.tools.delete
Versions, Sessions, and Calls
agents.deployagents.rollbackagents.versions.listsessions.createsessions.phone.createsessions.listsessions.getsessions.transcript.getsessions.recording.getagents.calls.listcalls.getcalls.recording.get
Phone Numbers, Knowledge Bases, and Evals
phone_numbers.listphone_numbers.available.searchphone_numbers.createphone_numbers.getphone_numbers.updatephone_numbers.deleteknowledge_bases.createknowledge_bases.listknowledge_bases.getknowledge_bases.deleteknowledge_bases.documents.listknowledge_bases.documents.createknowledge_bases.documents.getknowledge_bases.documents.deleteknowledge_bases.documents.finalizeagents.evals.listagents.evals.createagents.evals.runevals.get
Build and Migration Helpers
migration.workspace.inspectmigration.session_config.buildmigration.external_config.parsemigration.briefing.rendershare_cards.create
Router keys
Keys for the OpenAI-compatible router at https://api.speko.ai/v1. A router
key carries its own routing policy — language, use case, objective, max
price, and an ordered chain per stage whose element 0 is the pin and whose
remaining elements are the failover order — so a caller who configured it
sends no routing headers.
router.keys.listrouter.keys.createrouter.keys.updaterouter.keys.revoke
These four require OAuth. A Speko API key is refused, and is never sent to the control plane: a machine credential must not be able to mint further credentials.
Docs
docs.search- full-text search over the bundled Speko docs (SDK/adapter READMEs, hosted llms.txt exports, migration guides). Hits link tospekoai://docs/{slug}resources;spekoai://docs/indexlists every doc.
Auth model
The server has no long-lived SpekoAI credential of its own. Tools forward the
caller credential to the Speko API. The credential can be an OAuth access token
minted by the platform or a Speko API key supplied by the MCP client as
Authorization: Bearer ....
If OAuth env vars are configured, /mcp accepts OAuth or Speko API keys. If
OAuth env vars are absent, /mcp still requires a valid Speko API key. Partial
OAuth configuration fails closed at startup.
The one exception is router.keys.*, which requires OAuth. Router key tools
talk to the router control plane (SPEKOAI_ROUTER_CONTROL_URL, default
https://control.speko.ai) rather than the Speko API, and that plane
authenticates a signed-in user, never a machine principal.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceA Model Context Protocol server that integrates high-quality text-to-speech capabilities with Claude Desktop and other MCP-compatible clients, supporting multiple voice options and audio formats.Last updated291MIT
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI models to interact with VoIPBin's VoIP services, supporting features like call management, agent management, campaigns, conferences, and chat functionality.Last updated4MIT
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI assistants like Claude to initiate and manage real-time voice calls using Twilio and OpenAI's voice models.Last updated59MIT
- Flicense-qualityDmaintenanceA Model Context Protocol server that allows integration with Claude Desktop by creating and managing custom tools that can be executed through the MCP framework.Last updated98
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
MCP (Model Context Protocol) server for Appwrite
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SpekoAI/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server