@floomhq/signaldash 0.10.0 → 0.10.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.
Files changed (2) hide show
  1. package/bin/sd.mjs +1 -1
  2. package/package.json +1 -1
package/bin/sd.mjs CHANGED
@@ -187,7 +187,7 @@ export async function runMcp(dependencies = {}) {
187
187
  else if (method === "tools/call") {
188
188
  const t = TOOLS.find(x => x.name === params.name);
189
189
  if (!t) { reply(id, null, { code: -32601, message: "unknown tool" }); continue; }
190
- const r = await request(`/${t.ch}/${t.action}`, params.arguments || {});
190
+ const r = await request(t.path || `/${t.ch}/${t.action}`, params.arguments || {});
191
191
  reply(id, { content: [{ type: "text", text: JSON.stringify(r.json) }], isError: r.status >= 300 });
192
192
  } else if (id !== undefined) reply(id, {});
193
193
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/signaldash",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "Secure LinkedIn and WhatsApp MCP access for AI agents",
5
5
  "type": "module",
6
6
  "bin": {