@opennous/mcp 0.27.0 → 0.28.0

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/package.json +1 -1
  2. package/src/server.js +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opennous/mcp",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "description": "Nous MCP Server — Customer graph for GTM agents.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {
package/src/server.js CHANGED
@@ -39,7 +39,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
39
39
  import { z } from "zod";
40
40
  import { get, post } from "./client.js";
41
41
 
42
- export const SERVER_VERSION = "0.27.0";
42
+ export const SERVER_VERSION = "0.28.0";
43
43
 
44
44
  // ─── helpers ──────────────────────────────────────────────────────────────────
45
45
 
@@ -571,6 +571,12 @@ export function createServer() {
571
571
  lines.push(`WORKSPACE: ${ws.name || "(unnamed)"}${ws.website ? ` · ${ws.website}` : ""}${ws.business_type ? ` · ${ws.business_type}` : ""}`);
572
572
  const pl = s.plan ?? {};
573
573
  lines.push(`PLAN: ${pl.name || pl.id || "free"}${pl.crm_sync === false ? " (CRM sync not included — do not offer it)" : ""}`);
574
+ if (s.self_hosted) {
575
+ const e = s.env_integrations ?? {};
576
+ const mk = (b) => (b ? "✓ set" : "✗ NOT set");
577
+ lines.push("SELF-HOSTED — these channels are wired via nous.env (you can't set env vars; tell the operator to set + restart):");
578
+ lines.push(` LinkedIn/Unipile: ${mk(e.linkedin_unipile)} Email/Resend: ${mk(e.email_resend)} Gmail OAuth: ${mk(e.gmail_oauth)}`);
579
+ }
574
580
  lines.push("");
575
581
 
576
582
  const mark = (b) => (b ? "✓" : "✗");