@chamade/mcp-server 1.1.0 → 1.1.2
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.
- package/README.md +28 -0
- package/package.json +1 -9
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.
|
|
3
|
+
"version": "1.1.2",
|
|
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": {
|
|
@@ -13,15 +13,7 @@
|
|
|
13
13
|
"dev": "tsx src/index.ts",
|
|
14
14
|
"test": "tsx test/run.ts"
|
|
15
15
|
},
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "https://codeberg.org/skilpa/chamade.git",
|
|
19
|
-
"directory": "chamade-mcp"
|
|
20
|
-
},
|
|
21
16
|
"homepage": "https://chamade.io",
|
|
22
|
-
"bugs": {
|
|
23
|
-
"url": "https://codeberg.org/skilpa/chamade/issues"
|
|
24
|
-
},
|
|
25
17
|
"author": "Nafis <contact@nafis.io>",
|
|
26
18
|
"dependencies": {
|
|
27
19
|
"@modelcontextprotocol/sdk": "^1.25.0",
|