@relaycast/mcp 0.4.1 → 0.4.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/dist/piggyback.js CHANGED
@@ -77,7 +77,7 @@ export function enablePiggyback(mcpServer, getSession, getAgentClient, telemetry
77
77
  (inbox.mentions?.length ?? 0) > 0 ||
78
78
  (inbox.unreadDms?.length ?? 0) > 0 ||
79
79
  (inbox.recentReactions?.length ?? 0) > 0;
80
- console.debug('[piggyback] inbox fetch ok — channels=%d mentions=%d dms=%d reactions=%d', inbox.unreadChannels?.length ?? 0, inbox.mentions?.length ?? 0, inbox.unreadDms?.length ?? 0, inbox.recentReactions?.length ?? 0);
80
+ console.error('[piggyback] inbox fetch ok — channels=%d mentions=%d dms=%d reactions=%d', inbox.unreadChannels?.length ?? 0, inbox.mentions?.length ?? 0, inbox.unreadDms?.length ?? 0, inbox.recentReactions?.length ?? 0);
81
81
  if (hasUnread && hasContentArray(result)) {
82
82
  const selfName = getSession().agentName;
83
83
  const inboxText = formatInbox(inbox, selfName);
@@ -90,7 +90,7 @@ export function enablePiggyback(mcpServer, getSession, getAgentClient, telemetry
90
90
  }
91
91
  }
92
92
  catch (err) {
93
- console.debug('[piggyback] inbox fetch failed — %s', err instanceof Error ? err.message : String(err));
93
+ console.error('[piggyback] inbox fetch failed — %s', err instanceof Error ? err.message : String(err));
94
94
  }
95
95
  return result;
96
96
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relaycast/mcp",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,8 +13,8 @@
13
13
  "lint": "eslint src/"
14
14
  },
15
15
  "dependencies": {
16
- "@relaycast/sdk": "0.4.1",
17
- "@relaycast/types": "0.4.1",
16
+ "@relaycast/sdk": "0.4.2",
17
+ "@relaycast/types": "0.4.2",
18
18
  "@modelcontextprotocol/sdk": "^1.26.0",
19
19
  "express": "^5.2.1",
20
20
  "zod": "^4.3.6"