@chamade/mcp-server 1.1.6 → 1.1.7

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/dist/index.js +1 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -818,8 +818,7 @@ async function channelSyncActiveCalls() {
818
818
  try {
819
819
  const data = (await chamadeGet("/api/calls"));
820
820
  for (const call of data.calls) {
821
- if (call.state !== "ended" &&
822
- call.state !== "error" &&
821
+ if (call.state === "active" &&
823
822
  !_callWatchers.has(call.id) &&
824
823
  !_closedWatchers.has(call.id)) {
825
824
  channelWatchCall(call.id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chamade/mcp-server",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
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": {