stream0-channel 0.4.0 → 0.4.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.
@@ -353,7 +353,7 @@ await mcp.connect(new StdioServerTransport());
353
353
 
354
354
  // Register agent on Stream0 (group-auth) and get agent token
355
355
  const regResult = await stream0Post("/agents", { id: AGENT_ID });
356
- if (regResult?.agent_token && !agentToken) {
356
+ if (regResult?.agent_token) {
357
357
  agentToken = regResult.agent_token;
358
358
  }
359
359
  console.error(`[stream0-channel] Registered as ${AGENT_ID}, polling inbox...`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream0-channel",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Stream0 MCP channel for Claude Code",
5
5
  "bin": {
6
6
  "stream0-channel": "bin/stream0-channel.mjs"