Submit

Chamade

@chamade-io

Hosted MCP gateway that lets AI agents 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, STT, TTS, chat relay). 13 tools + 1 resource.
Overview

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.

Server Config

{
  "mcpServers": {
    "chamade": {
      "type": "http",
      "url": "https://mcp.chamade.io/mcp/",
      "headers": {
        "Authorization": "Bearer chmd_YOUR_KEY_HERE"
      }
    }
  }
}
© 2025 MCP.so. All rights reserved.

Build with ShipAny.