@seldonframe/mcp 1.1.7 → 1.1.8

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 +2 -2
  2. package/src/welcome.js +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seldonframe/mcp",
3
- "version": "1.1.7",
4
- "description": "MCP server for SeldonFrame — AI-native Business OS platform. One command creates a real, hosted workspace with a website, booking page, intake form, CRM, and AI agents. v1.1.7: 3 root-cause fixes from the Elevated Med Spa demo. (1) SAAS_PACK rewritten to be NEUTRAL every previous SaaS workspace was rendering SeldonFrame's own marketing template ('Replace 5 Tools. Deploy in 2 Minutes. 75 MCP Tools, Brain Layer, Anthropic/Vercel/Neon partners') because the pack hardcoded SeldonFrame copy + the businessType classifier matched 'platform' alone. Fix: pack ships generic copy + empty features list (populates from soul.offerings); classifier requires multi-word distinct markers ('saas platform', 'developer tools', 'open source') instead of bare 'platform'/'api'/'library' which were matching 'wellness platform'/'aesthetics platform'/'rapid'/'library of services'. (2) Dashboard hero mockup removed hardcoded '128 Contacts, 42 Active Deals, $24k MRR' was SeldonFrame's own data appearing on operator workspaces. (3) Resend pickFromAddress now filters out sandbox onboarding@resend.dev fallbacks (which only deliver to the account owner) and forces welcome@seldonframe.com (verified domain). New medspa CRMPersonality: keywords (med spa, botox, filler, microneedling, hydrafacial, IV therapy, body contouring, cosmetic, aesthetics, wellness clinic), pipeline (Inquiry Consultation Booked Plan Sent Accepted Scheduled Completed Follow-up), booking default (30 min Complimentary Consultation), gold accent (#c9a96e). Per-personality default accent colors so brand archetype shows up at create time.",
3
+ "version": "1.1.8",
4
+ "description": "MCP server for SeldonFrame — AI-native Business OS platform. ⚠️ BACKEND REDEPLOY REQUIRED bumping the npm MCP package alone does not deploy server-side fixes. The Next.js backend at app.seldonframe.com must be redeployed from the v1.1.8 branch for landing-page rendering / Resend / personality fixes to actually take effect. v1.1.8 builds on v1.1.7's SAAS_PACK rewrite + medspa personality + Resend hardening with two more defense layers: (1) CTA button labels now flow from personality.content_templates.cta_button_primary / .cta_button_secondary so a fresh medspa workspace ships 'Book your consultation ' on the hero (not the SAAS_PACK's generic 'Get started '). Pack-defined PageAction labels get rewritten in seedLandingFromSoul's applyResolvedContentToActions step. (2) pickFromAddress hardened: any RESEND_FROM_ADDRESS env value not on a verified seldonframe.com domain is now rejected with a console.warn and falls back to welcome@seldonframe.com. Guards against env drift on staging/preview deployments. v1.1.7 recap: SAAS_PACK neutralized (was hardcoding 'Replace 5 Tools. 75 MCP Tools. Brain Layer.' SeldonFrame copy on every operator workspace); classifier no longer matches bare 'platform'/'api'/'library'; hero dashboard mockup removed; medspa personality added (keywords, pipeline, 30 min Complimentary Consultation booking, gold accent #c9a96e).",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "seldonframe-mcp": "src/index.js"
package/src/welcome.js CHANGED
@@ -8,7 +8,7 @@
8
8
  // stripped. `create_full_workspace` is the only workspace-creation
9
9
  // path mentioned anywhere in this briefing.
10
10
 
11
- export const VERSION = "1.1.7";
11
+ export const VERSION = "1.1.8";
12
12
 
13
13
  export const WELCOME_MARKDOWN = `# SeldonFrame — create a real Business OS in one conversation
14
14