@chamade/mcp-server 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -54,6 +54,32 @@ Requires `CHAMADE_API_KEY` env var. Get one at https://chamade.io/dashboard.
54
54
  }
55
55
  ```
56
56
 
57
+ ### Claude Code
58
+
59
+ `.mcp.json` at the root of your project:
60
+
61
+ ```json
62
+ {
63
+ "mcpServers": {
64
+ "chamade": {
65
+ "command": "npx",
66
+ "args": ["-y", "@chamade/mcp-server"],
67
+ "env": {
68
+ "CHAMADE_API_KEY": "chmd_..."
69
+ }
70
+ }
71
+ }
72
+ }
73
+ ```
74
+
75
+ Claude Code supports **channel mode** — transcripts, messages, and incoming calls are pushed to the agent in real-time. No polling needed. The agent is notified automatically when someone speaks in the meeting or sends a DM.
76
+
77
+ Channel mode currently requires starting Claude Code with development channels enabled:
78
+
79
+ ```bash
80
+ claude --dangerously-skip-permissions --dangerously-load-development-channels server:chamade
81
+ ```
82
+
57
83
  ### Cursor / Windsurf
58
84
 
59
85
  `.cursor/mcp.json` or `.windsurf/mcp.json` — same format as Claude Desktop.
@@ -118,6 +144,8 @@ Discord / Teams / Meet / ...
118
144
 
119
145
  The MCP server is a thin client. It calls the Chamade REST API to create/manage calls and poll transcripts. Transcripts are exposed as an MCP resource with a delta-read pattern (only new lines since last read).
120
146
 
147
+ In **channel mode** (Claude Code and other clients that support MCP notifications), the server opens WebSocket connections to Chamade and pushes events directly to the agent — no polling loop needed. Transcripts, chat messages, incoming calls, and DMs all arrive as real-time notifications.
148
+
121
149
  ## Development
122
150
 
123
151
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chamade/mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MCP server for Chamade — voice gateway for AI agents. Join Discord, Teams, Meet, Telegram, SIP, Zoom meetings and interact via speech and text. Supports Claude Code channel mode for push events.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,8 +15,7 @@
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
18
- "url": "https://codeberg.org/skilpa/chamade.git",
19
- "directory": "chamade-mcp"
18
+ "url": "https://github.com/chamade/mcp-server.git"
20
19
  },
21
20
  "homepage": "https://chamade.io",
22
21
  "bugs": {