mcp-chat-connect 1.1.4 → 1.1.5

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/index.js +1 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -343,6 +343,7 @@ async function handleToolCall(name, args) {
343
343
  channel_id: sessionState.channelId,
344
344
  content,
345
345
  message_type: messageType,
346
+ session_token: sessionState.sessionToken,
346
347
  }, sessionState.token);
347
348
  if (result.error) return { content: [{ type: 'text', text: `Error: ${result.error}` }], isError: true };
348
349
  return { content: [{ type: 'text', text: `Message sent to #${sessionState.channelName}` }] };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-chat-connect",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "MCP server with channels support for connecting Claude Code sessions to MCP Chat -- real-time team messaging for AI-assisted development",
5
5
  "main": "index.js",
6
6
  "bin": {