@seldonframe/mcp 1.1.2 → 1.1.4

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.2",
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.2: surgically removes three tools that let Claude Code work around the atomic pipeline `create_workspace` (deprecation in 1.1.1 wasn't enough; deleted entirely), `install_vertical_pack` (the /packs/install endpoint doesn't exist; was 404'ing every test run), and `create_landing_page` (was triggering Free-tier upgrade_required errors by trying to create a SECOND landing page when the workspace already had one from the create_full_workspace pipeline). Industry config now flows entirely through the CRMPersonality the server picks during create_full_workspace; landing-page customization goes through `update_landing_page` on the auto-created default page.",
3
+ "version": "1.1.4",
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.4: Personality-Driven Content Layer every CRMPersonality now ships its own landing-page templates (hero headlines, trust badges, services heading, FAQs, CTAs) with placeholder substitution against operator input. Dental workspaces ship dental copy ('Now accepting new patients · In-network PPO · Same-day emergency'); HVAC workspaces ship HVAC copy ('Same-Day Service'); legal workspaces ship legal copy ('Free initial consultation · Confidential') instead of all three falling back to coaching-flavored 'Free consultation' boilerplate. Stats grid is now sourced exclusively from input.review_count + input.review_rating; never fabricated. Intake form auto-injects a 'Which service are you interested in?' select dropdown populated from input.services. Nav bar no longer leaks long section headings ('How I help clients move forward') hardcoded to short labels (Services / Practice Areas / Treatments). Welcome emails ship from the verified welcome@seldonframe.com address (no more 3/day rate-limited resend.dev sandbox). Bracket syntax in templates ([fragment with {placeholder}]) drops proof-dependent fragments cleanly when operator data is missing.",
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.2";
11
+ export const VERSION = "1.1.4";
12
12
 
13
13
  export const WELCOME_MARKDOWN = `# SeldonFrame — create a real Business OS in one conversation
14
14