Chamade — voice and chat gateway for AI agents
Chamade lets your MCP-capable AI agent join voice meetings and DMs on Discord, Microsoft Teams, Google Meet, Nextcloud Talk, Zoom, Telegram, WhatsApp, and SIP phones. Your agent only deals with text — Chamade handles the audio layer (joining the room, speech-to-text, text-to-speech, chat relay).
What's in the box
13 tools covering the full lifecycle of voice calls and DMs:
- Calls
chamade_call_join,chamade_call_accept,chamade_call_refuse,chamade_call_say(beta TTS),chamade_call_chat,chamade_call_typing,chamade_call_status,chamade_call_leave,chamade_call_list- Direct messages
chamade_dm_chat,chamade_dm_typing,chamade_inbox- Bootstrap
chamade_account
Plus one live resource: chamade://calls/{call_id}/transcript (delta-read, each read returns only new lines since the last).
Connect it
Paste this into your MCP client config:
{
"mcpServers": {
"chamade": {
"type": "http",
"url": "https://mcp.chamade.io/mcp/",
"headers": {
"Authorization": "Bearer chmd_YOUR_KEY_HERE"
}
}
}
}
Get a key
Sign up for free at chamade.io and generate an API key (format chmd_*). Then connect the platforms you need (Discord, Teams, Meet, etc.) from the dashboard.
Stdio fallback
Older MCP clients that only speak stdio can use the npm shim:
{
"mcpServers": {
"chamade": {
"command": "npx",
"args": ["-y", "@chamade/mcp-server@latest"],
"env": {
"CHAMADE_API_KEY": "chmd_YOUR_KEY_HERE"
}
}
}
}
The shim is a ~160-line wrapper around mcp-remote that forwards to the same hosted endpoint — same tools, same push events, no parallel stdio implementation to drift.
Links
- Website: https://chamade.io
- Documentation: https://chamade.io/docs/mcp
- API reference for agents: https://chamade.io/llms-full.txt
- Source (shim): https://github.com/chamade-io/mcp-server
- npm: https://www.npmjs.com/package/@chamade/mcp-server
- Also on: MCP Registry (
io.chamade/server), Smithery (chamade/server)
Server Config
{
"mcpServers": {
"chamade": {
"type": "http",
"url": "https://mcp.chamade.io/mcp/",
"headers": {
"Authorization": "Bearer chmd_YOUR_KEY_HERE"
}
}
}
}