notifyme-csm-mcp 1.0.13 → 1.0.14

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 +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -465,6 +465,7 @@ const TOOLS = [
465
465
  endDate: { type: "string", description: "YYYY-MM-DD inclusive; passing dates implies timeframe=custom (server-TZ)." },
466
466
  channel: { type: "string", enum: ["email", "linkedin", "call", "whatsapp", "other"], description: "Narrow approached+replied to one channel." },
467
467
  tags: { type: "array", items: { type: "string" }, description: "Only companies carrying ALL of these tags." },
468
+ targetUniverseSize: { type: "number", description: "Optional: size of the addressable target universe (e.g. Shopify Plus stores). When provided, totalCoverage.generationCoveragePct = totalLeadsGenerated / targetUniverseSize." },
468
469
  },
469
470
  },
470
471
  },
@@ -768,6 +769,8 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
768
769
  qs.set("channel", String(a.channel));
769
770
  if (a.tags?.length)
770
771
  qs.set("tags", a.tags.join(","));
772
+ if (a.targetUniverseSize)
773
+ qs.set("targetUniverseSize", String(a.targetUniverseSize));
771
774
  data = await api("GET", `/funnel-rates?${qs.toString()}`);
772
775
  break;
773
776
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notifyme-csm-mcp",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "NotifyMe CSM — MCP server for LLM integrations (Claude Code, Cursor, etc.)",
5
5
  "_versionPolicy": "The version field above is a placeholder and is NEVER updated in git. The real published version lives only on npm — run `npm view notifyme-csm-mcp version` to check. To publish a new release, use the GitHub workflow `Publish MCP` (Actions tab → Publish notifyme-csm-mcp → Run workflow). This prevents recurring merge conflicts across feature/dev/main branches that used to plague every PR.",
6
6
  "type": "module",