@seldonframe/mcp 1.59.0 → 1.59.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 (3) hide show
  1. package/README.md +113 -113
  2. package/package.json +59 -59
  3. package/src/welcome.js +1 -1
package/README.md CHANGED
@@ -1,113 +1,113 @@
1
- <!-- mcp-name: io.github.seldonframe/mcp -->
2
- # @seldonframe/mcp
3
-
4
- Official SeldonFrame MCP server for Claude Code and Claude Desktop.
5
-
6
- **One command, one real workspace.** The first time you run it, no API key is needed. Say `create_workspace({ name: "Dental Clinic Laval" })` and the server mints a real hosted workspace on `dental-clinic-laval.app.seldonframe.com` — with CRM, Cal.diy booking, Formbricks intake, and Brain v2 pre-installed — and returns live URLs. No signup wall, no "guest mode", no claim step.
7
-
8
- ## 60-second quickstart
9
-
10
- ```bash
11
- # 1. From the repo root
12
- cd skills/mcp-server && npm install
13
-
14
- # 2. Register with Claude Code — no env vars needed
15
- claude mcp add seldonframe -s user -- node "$(pwd)/src/index.js"
16
-
17
- # 3. In Claude Code, just ask:
18
- # create_workspace({ name: "My Business OS" })
19
- ```
20
-
21
- That call returns something like:
22
-
23
- ```json
24
- {
25
- "workspace": { "id": "wsp_…", "slug": "my-business-os", "tier": "free" },
26
- "urls": {
27
- "dashboard": "https://my-business-os.app.seldonframe.com",
28
- "book": "https://my-business-os.app.seldonframe.com/book",
29
- "intake": "https://my-business-os.app.seldonframe.com/intake"
30
- },
31
- "installed": ["crm", "caldiy-booking", "formbricks-intake", "brain-v2"],
32
- "next": [ "…" ]
33
- }
34
- ```
35
-
36
- Every subsequent tool response includes a `next:` array — follow the rails.
37
-
38
- ## How auth works
39
-
40
- | Situation | What happens |
41
- |---|---|
42
- | First ever call | `create_workspace` POSTs with no auth. Server mints a workspace + bearer token. MCP stores the token in `~/.seldonframe/device.json`. |
43
- | Subsequent calls | MCP sends `Authorization: Bearer <workspace token>` automatically. |
44
- | `SELDONFRAME_API_KEY` set | Takes precedence over device tokens. Unlocks Pro capabilities. |
45
-
46
- You never have to juggle modes. The first workspace is free forever.
47
-
48
- ## When you need `SELDONFRAME_API_KEY`
49
-
50
- - Adding a **second workspace**
51
- - Connecting a **custom domain**
52
- - **Full Brain v2** intelligence (heuristic Brain is always free)
53
- - Publishing, exporting, org-scoped secret rotation
54
-
55
- Get one at <https://app.seldonframe.com/settings/api>, then:
56
-
57
- ```bash
58
- export SELDONFRAME_API_KEY=sk-…
59
- ```
60
-
61
- Restart the MCP server. Your existing workspaces continue to work untouched.
62
-
63
- ## Install via plugin manifest (one-shot)
64
-
65
- The repo ships a `.claude-plugin/plugin.json` at the root. From inside Claude Code:
66
-
67
- ```
68
- /plugin install <path-to-repo>
69
- ```
70
-
71
- ## Install via npm
72
-
73
- ```bash
74
- claude mcp add seldonframe -- npx -y @seldonframe/mcp
75
- ```
76
-
77
- This is the canonical install command surfaced on the marketing site,
78
- the `/docs/quickstart` page, and the repo README. It uses `npx -y`
79
- so users never have to globally install anything; the latest version
80
- is fetched and run on demand.
81
-
82
- ## Environment
83
-
84
- - `SELDONFRAME_API_KEY` *(optional)* — Enables Pro capabilities (second workspace, custom domains, full Brain v2).
85
- - `SELDONFRAME_API_BASE` *(optional)* — Override the API base URL. Defaults to `https://app.seldonframe.com/api/v1`.
86
-
87
- ## Tools
88
-
89
- **Workspace:** `create_workspace`, `list_workspaces`, `switch_workspace`, `clone_workspace`, `link_workspace_owner`, `get_workspace_snapshot`.
90
- **Blocks:** `install_caldiy_booking`, `install_formbricks_intake`, `install_vertical_pack`.
91
- **Customize (typed, no backend LLM):** `update_landing_content`, `customize_intake_form`, `configure_booking`, `update_theme`.
92
- **Soul:** `fetch_source_for_soul`, `submit_soul`.
93
- **Ops:** `list_automations`, `connect_custom_domain`, `export_agent`, `store_secret`, `list_secrets`, `rotate_secret`.
94
-
95
- ### Architecture: zero backend LLM cost
96
-
97
- Natural-language reasoning happens in the MCP session (Claude Code on the user's side). The backend only accepts **structured** commands and applies them deterministically. There is no `seldon_it` endpoint that parses prompts server-side; the old `query_brain` is replaced by `get_workspace_snapshot`, which returns raw state for Claude to reason over. Seldon spends $0 on LLM for the free tier — the user's Claude Code subscription is the reasoning engine.
98
-
99
- ### Soul compilation (zero cost to Seldon)
100
-
101
- Soul compilation runs in **your** Claude Code session, not on Seldon's servers:
102
-
103
- 1. `fetch_source_for_soul({ url })` — returns up to 256KB of normalized text.
104
- 2. You (the agent) extract a structured Soul object.
105
- 3. `submit_soul({ soul })` — persists it to the workspace.
106
-
107
- ## Troubleshooting
108
-
109
- **`Seldon API 401`** — Your `SELDONFRAME_API_KEY` is invalid or expired. Regenerate at <https://app.seldonframe.com/settings/api>, or unset the env var to fall back to your device token.
110
-
111
- **`Seldon API 402`** — You tried a Pro capability without a key. Set `SELDONFRAME_API_KEY` and restart.
112
-
113
- **Want to reset device state?** Delete `~/.seldonframe/device.json`. Your hosted workspaces stay live at `app.seldonframe.com`; only the local tokens are cleared.
1
+ <!-- mcp-name: io.github.seldonframe/mcp -->
2
+ # @seldonframe/mcp
3
+
4
+ Official SeldonFrame MCP server for Claude Code and Claude Desktop.
5
+
6
+ **One command, one real workspace.** The first time you run it, no API key is needed. Say `create_workspace({ name: "Dental Clinic Laval" })` and the server mints a real hosted workspace on `dental-clinic-laval.app.seldonframe.com` — with CRM, Cal.diy booking, Formbricks intake, and Brain v2 pre-installed — and returns live URLs. No signup wall, no "guest mode", no claim step.
7
+
8
+ ## 60-second quickstart
9
+
10
+ ```bash
11
+ # 1. From the repo root
12
+ cd skills/mcp-server && npm install
13
+
14
+ # 2. Register with Claude Code — no env vars needed
15
+ claude mcp add seldonframe -s user -- node "$(pwd)/src/index.js"
16
+
17
+ # 3. In Claude Code, just ask:
18
+ # create_workspace({ name: "My Business OS" })
19
+ ```
20
+
21
+ That call returns something like:
22
+
23
+ ```json
24
+ {
25
+ "workspace": { "id": "wsp_…", "slug": "my-business-os", "tier": "free" },
26
+ "urls": {
27
+ "dashboard": "https://my-business-os.app.seldonframe.com",
28
+ "book": "https://my-business-os.app.seldonframe.com/book",
29
+ "intake": "https://my-business-os.app.seldonframe.com/intake"
30
+ },
31
+ "installed": ["crm", "caldiy-booking", "formbricks-intake", "brain-v2"],
32
+ "next": [ "…" ]
33
+ }
34
+ ```
35
+
36
+ Every subsequent tool response includes a `next:` array — follow the rails.
37
+
38
+ ## How auth works
39
+
40
+ | Situation | What happens |
41
+ |---|---|
42
+ | First ever call | `create_workspace` POSTs with no auth. Server mints a workspace + bearer token. MCP stores the token in `~/.seldonframe/device.json`. |
43
+ | Subsequent calls | MCP sends `Authorization: Bearer <workspace token>` automatically. |
44
+ | `SELDONFRAME_API_KEY` set | Takes precedence over device tokens. Unlocks Pro capabilities. |
45
+
46
+ You never have to juggle modes. The first workspace is free forever.
47
+
48
+ ## When you need `SELDONFRAME_API_KEY`
49
+
50
+ - Adding a **second workspace**
51
+ - Connecting a **custom domain**
52
+ - **Full Brain v2** intelligence (heuristic Brain is always free)
53
+ - Publishing, exporting, org-scoped secret rotation
54
+
55
+ Get one at <https://app.seldonframe.com/settings/api>, then:
56
+
57
+ ```bash
58
+ export SELDONFRAME_API_KEY=sk-…
59
+ ```
60
+
61
+ Restart the MCP server. Your existing workspaces continue to work untouched.
62
+
63
+ ## Install via plugin manifest (one-shot)
64
+
65
+ The repo ships a `.claude-plugin/plugin.json` at the root. From inside Claude Code:
66
+
67
+ ```
68
+ /plugin install <path-to-repo>
69
+ ```
70
+
71
+ ## Install via npm
72
+
73
+ ```bash
74
+ claude mcp add seldonframe -- npx -y @seldonframe/mcp
75
+ ```
76
+
77
+ This is the canonical install command surfaced on the marketing site,
78
+ the `/docs/quickstart` page, and the repo README. It uses `npx -y`
79
+ so users never have to globally install anything; the latest version
80
+ is fetched and run on demand.
81
+
82
+ ## Environment
83
+
84
+ - `SELDONFRAME_API_KEY` *(optional)* — Enables Pro capabilities (second workspace, custom domains, full Brain v2).
85
+ - `SELDONFRAME_API_BASE` *(optional)* — Override the API base URL. Defaults to `https://app.seldonframe.com/api/v1`.
86
+
87
+ ## Tools
88
+
89
+ **Workspace:** `create_workspace`, `list_workspaces`, `switch_workspace`, `clone_workspace`, `link_workspace_owner`, `get_workspace_snapshot`.
90
+ **Blocks:** `install_caldiy_booking`, `install_formbricks_intake`, `install_vertical_pack`.
91
+ **Customize (typed, no backend LLM):** `update_landing_content`, `customize_intake_form`, `configure_booking`, `update_theme`.
92
+ **Soul:** `fetch_source_for_soul`, `submit_soul`.
93
+ **Ops:** `list_automations`, `connect_custom_domain`, `export_agent`, `store_secret`, `list_secrets`, `rotate_secret`.
94
+
95
+ ### Architecture: zero backend LLM cost
96
+
97
+ Natural-language reasoning happens in the MCP session (Claude Code on the user's side). The backend only accepts **structured** commands and applies them deterministically. There is no `seldon_it` endpoint that parses prompts server-side; the old `query_brain` is replaced by `get_workspace_snapshot`, which returns raw state for Claude to reason over. Seldon spends $0 on LLM for the free tier — the user's Claude Code subscription is the reasoning engine.
98
+
99
+ ### Soul compilation (zero cost to Seldon)
100
+
101
+ Soul compilation runs in **your** Claude Code session, not on Seldon's servers:
102
+
103
+ 1. `fetch_source_for_soul({ url })` — returns up to 256KB of normalized text.
104
+ 2. You (the agent) extract a structured Soul object.
105
+ 3. `submit_soul({ soul })` — persists it to the workspace.
106
+
107
+ ## Troubleshooting
108
+
109
+ **`Seldon API 401`** — Your `SELDONFRAME_API_KEY` is invalid or expired. Regenerate at <https://app.seldonframe.com/settings/api>, or unset the env var to fall back to your device token.
110
+
111
+ **`Seldon API 402`** — You tried a Pro capability without a key. Set `SELDONFRAME_API_KEY` and restart.
112
+
113
+ **Want to reset device state?** Delete `~/.seldonframe/device.json`. Your hosted workspaces stay live at `app.seldonframe.com`; only the local tokens are cleared.
package/package.json CHANGED
@@ -1,59 +1,59 @@
1
- {
2
- "name": "@seldonframe/mcp",
3
- "version": "1.59.0",
4
- "mcpName": "io.github.seldonframe/seldonframe-mcp",
5
- "description": "Open-source GoHighLevel alternative for agencies. 146+ MCP tools that let Claude Code spin up white-labeled client workspaces — CRM, booking, intake forms, landing pages, AI chatbot, and pre-wired agent archetypes (speed-to-lead, missed-call-text-back, review-requester) — in minutes. AGPL-3.0.",
6
- "license": "AGPL-3.0-or-later",
7
- "type": "module",
8
- "bin": {
9
- "seldonframe-mcp": "src/index.js"
10
- },
11
- "files": [
12
- "src",
13
- "README.md"
14
- ],
15
- "engines": {
16
- "node": ">=18"
17
- },
18
- "scripts": {
19
- "start": "node src/index.js",
20
- "check:syntax": "node --check --input-type=module < src/index.js && node --check --input-type=module < src/client.js && node --check --input-type=module < src/tools.js && node --check --input-type=module < src/welcome.js",
21
- "prepublishOnly": "npm run check:syntax"
22
- },
23
- "dependencies": {
24
- "@modelcontextprotocol/sdk": "^1.0.4"
25
- },
26
- "keywords": [
27
- "mcp",
28
- "model-context-protocol",
29
- "seldonframe",
30
- "ai",
31
- "agents",
32
- "business-os",
33
- "claude-code",
34
- "crm",
35
- "gohighlevel-alternative",
36
- "gohighlevel",
37
- "agency",
38
- "whitelabel",
39
- "partner-agency",
40
- "booking",
41
- "intake-form",
42
- "landing-page",
43
- "local-service-business",
44
- "sms",
45
- "twilio",
46
- "ai-receptionist",
47
- "ai-chatbot",
48
- "missed-call"
49
- ],
50
- "homepage": "https://seldonframe.com",
51
- "repository": {
52
- "type": "git",
53
- "url": "git+https://github.com/seldonframe/seldonframe.git",
54
- "directory": "skills/mcp-server"
55
- },
56
- "publishConfig": {
57
- "access": "public"
58
- }
59
- }
1
+ {
2
+ "name": "@seldonframe/mcp",
3
+ "version": "1.59.1",
4
+ "mcpName": "io.github.seldonframe/mcp",
5
+ "description": "Open-source GoHighLevel alternative for agencies. 146+ MCP tools that let Claude Code spin up white-labeled client workspaces — CRM, booking, intake forms, landing pages, AI chatbot, and pre-wired agent archetypes (speed-to-lead, missed-call-text-back, review-requester) — in minutes. AGPL-3.0.",
6
+ "license": "AGPL-3.0-or-later",
7
+ "type": "module",
8
+ "bin": {
9
+ "seldonframe-mcp": "src/index.js"
10
+ },
11
+ "files": [
12
+ "src",
13
+ "README.md"
14
+ ],
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
+ "scripts": {
19
+ "start": "node src/index.js",
20
+ "check:syntax": "node --check --input-type=module < src/index.js && node --check --input-type=module < src/client.js && node --check --input-type=module < src/tools.js && node --check --input-type=module < src/welcome.js",
21
+ "prepublishOnly": "npm run check:syntax"
22
+ },
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.4"
25
+ },
26
+ "keywords": [
27
+ "mcp",
28
+ "model-context-protocol",
29
+ "seldonframe",
30
+ "ai",
31
+ "agents",
32
+ "business-os",
33
+ "claude-code",
34
+ "crm",
35
+ "gohighlevel-alternative",
36
+ "gohighlevel",
37
+ "agency",
38
+ "whitelabel",
39
+ "partner-agency",
40
+ "booking",
41
+ "intake-form",
42
+ "landing-page",
43
+ "local-service-business",
44
+ "sms",
45
+ "twilio",
46
+ "ai-receptionist",
47
+ "ai-chatbot",
48
+ "missed-call"
49
+ ],
50
+ "homepage": "https://seldonframe.com",
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "git+https://github.com/seldonframe/seldonframe.git",
54
+ "directory": "skills/mcp-server"
55
+ },
56
+ "publishConfig": {
57
+ "access": "public"
58
+ }
59
+ }
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.44.0";
11
+ export const VERSION = "1.59.1";
12
12
 
13
13
  export const WELCOME_MARKDOWN = `# SeldonFrame — create a real Business OS in one conversation
14
14