@path58/p58-n8n 0.2.17 → 0.2.20-demo.2
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.
- package/AGENT_INSTALL.md +216 -202
- package/CHANGELOG.md +50 -0
- package/README.md +158 -79
- package/dist/mcp/server.bundle.cjs +50978 -31787
- package/docs/GET-STARTED-IN-5-MIN.md +185 -0
- package/docs/mcp-install-cloudflare-access-runbook.md +124 -0
- package/package.json +16 -9
- package/src/data/public-catalog/credentials.json +1 -1
- package/src/data/public-catalog/manifest.json +7 -7
- package/src/data/public-catalog/node-credentials.json +1 -1
- package/src/data/public-catalog/nodes.json +1 -1
- package/src/data/public-catalog/operations.json +1 -1
package/README.md
CHANGED
|
@@ -1,45 +1,76 @@
|
|
|
1
1
|
# p58-n8n — The n8n MCP Server That Gets Workflows Right
|
|
2
2
|
|
|
3
|
-
**Build n8n workflows from plain English
|
|
3
|
+
**Build n8n workflows from plain English — execution-verified, built to land on the first try.**
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@path58/p58-n8n)
|
|
6
6
|
[](LICENSE)
|
|
7
|
-
[](https://github.com/tsvika58/p58-n8n/actions/workflows/ci.yml)
|
|
8
8
|
[](https://nodejs.org)
|
|
9
9
|
|
|
10
|
-
p58-n8n is an MCP server that gives your AI assistant
|
|
10
|
+
p58-n8n is an MCP server that gives your AI assistant a catalog of n8n — an offline index of **1,603 nodes**, **14,805 operations**, and **679 credential types**, plus (with a premium token) the full parameter & connection schemas<sup>[[1]](#sources)</sup> — so it can plan, build, validate, fix, and deploy workflows correctly.
|
|
11
11
|
|
|
12
12
|
> **🤖 AI Agent?** Read [`AGENT_INSTALL.md`](https://github.com/tsvika58/p58-n8n/blob/main/AGENT_INSTALL.md) for the autonomous installation guide.
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
## Why p58?
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
17
|
+
|
|
18
|
+
p58-n8n is built around one honest metric — **1-shot-1-kill (STRONG ⭐)**: the agent builds a working, *execution-verified* workflow on the **first** try. We publish it as a strict, audit-grade number (not a pass-rate slogan), and we report pass-rate as a separate column on purpose. The capability differences that drive it:
|
|
19
|
+
|
|
20
|
+
**What p58-n8n does:**
|
|
21
|
+
|
|
22
|
+
- **Full credential lifecycle** — discover, health-check (HTTP/TCP), create, and wire n8n credentials.
|
|
23
|
+
- **Multi-layer validation (L1–L6)** plus deterministic auto-fix against the real catalog.
|
|
24
|
+
- **Execution-verified testing** — `test_workflow` returns n8n's synchronous execution result, so a "pass" means the workflow *actually ran*. Competitor n8n MCP servers can prove only "HTTP 200 — saved" (REST CRUD), which is why all 9 measured competitor architectures sit at **0% strong-proof** in our canonical shootout.<sup>[[2]](#sources)</sup>
|
|
25
|
+
- **Offline discovery index** bundled in npm (node/operation/credential names); the enriched catalog (parameter & connection schemas) is unlocked with a premium token.
|
|
26
|
+
|
|
27
|
+
See **[v5 Demo & Honest Performance](#v5-demo--honest-performance)** for the measured numbers and methodology.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## v5 Demo & Honest Performance
|
|
32
|
+
|
|
33
|
+
### Install for the demo
|
|
34
|
+
|
|
35
|
+
**Easiest — one-click Desktop Extension:** install **`p58-n8n.mcpb`** in Claude Desktop (Settings → Extensions → Install Extension…) and fill the prompted fields. No JSON editing, no terminal; the bundle carries its own runtime deps. See [docs/INSTALLATION.md › Claude Desktop](docs/INSTALLATION.md#claude-desktop).
|
|
36
|
+
|
|
37
|
+
**Or via npm** — if you were given a `P58_ACCESS_TOKEN`, install the **demo** build explicitly (not the bare package, which resolves to an older `latest` tag):
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install @path58/p58-n8n@demo
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Then follow **[docs/GET-STARTED-IN-5-MIN.md](docs/GET-STARTED-IN-5-MIN.md)** — token-in-hand to your first agent-built, agent-tested workflow in under 10 minutes, entirely through Claude Desktop.
|
|
44
|
+
|
|
45
|
+
### One-shot-one-kill (STRONG ⭐) — the metric we actually publish
|
|
46
|
+
|
|
47
|
+
Our North-Star metric is **1-shot-1-kill STRONG ⭐**: the agent gets it right on the **first** attempt — one `build_workflow`, the **first** `test_workflow` runs green, no patches, no rebuilds — **and** the harness directly observed the workflow execute (audit-grade proof). It is deliberately stricter than pass rate.
|
|
48
|
+
|
|
49
|
+
Measured on the v5 release, canonical 250-cell shootout (golden07 substrate)<sup>[[2]](#sources)</sup>:
|
|
50
|
+
|
|
51
|
+
| Model | 1-shot-1-kill STRONG ⭐ | Pass rate (eventual) |
|
|
52
|
+
|---|---|---|
|
|
53
|
+
| **P58 + Opus** | **42%** (21/50) | 100% |
|
|
54
|
+
| **P58 + Sonnet** | **38%** (19/50) | 100% |
|
|
55
|
+
| **P58 + Haiku** | **4%** (2/50) | 94% |
|
|
56
|
+
| **Every competitor MCP (9 architectures)** | **0%** | varies |
|
|
57
|
+
|
|
58
|
+
> **These two columns measure different things.** Pass rate = "eventually got there, possibly after several patches." STRONG ⭐ = "got it right on the first try, with verified proof it ran." The **Pass rate (eventual)** column is the eventual-success number; the **STRONG ⭐** column is the first-try-with-proof number. We report them as separate columns on purpose — collapsing them into one "we're always right" claim would be a Goodhart trap our methodology doctrine explicitly forbids.
|
|
59
|
+
|
|
60
|
+
### Why every competitor sits at 0% STRONG — architecture, not tuning
|
|
61
|
+
|
|
62
|
+
Competitor n8n MCP servers talk to n8n over **REST CRUD** (create / update / delete). The strongest proof they can produce is "HTTP 200 — workflow saved," after which the harness must *poll* the executions list to guess which run was theirs — a weak proof tier. The signal that proves a workflow actually executed the way you asked lives in n8n's execution-result payload, and **only p58-n8n's `test_workflow` returns that synchronously.** Under fair, identical scoring, competitors can *claim* success but cannot *prove* execution, so they top out at the "ran, weak proof" tier and reach **zero** strong-proof cells across all 9 measured architectures.
|
|
63
|
+
|
|
64
|
+
The most extreme case is **N8NMCP-V253**: across 25 cells it logged **0 strong-proof (verified-green)** results and **25 weak-proof (verified-yellow)** results. It uses `n8n_update_partial_workflow` as its *primary* editing tool — so every workflow is assembled through one or more patches **by design**, which architecturally rules out the one-shot trace shape on top of the proof-tier ceiling. It cannot reach STRONG even in principle. That is an architectural moat, not a tuning gap.
|
|
65
|
+
|
|
66
|
+
> **Methodology footnote.** All v5 numbers were measured per the RAG-4.97.8 v5 release on the canonical **golden07** substrate, per the formal `is_1s1k_strong(cell)` definition in STRATEGIC_ANCHORS v1.2.0, and were **substrate-clean** per the INC-2026-05-29 memory-quarantine fix (pre-2026-05-29 baselines on this hardware are non-canonical and are not cited here). Tier colors were cross-validated by the canonical reclassifier (`per-cell-outcome-1.1.0` schema). This is the project's first canonical-clean performance release.
|
|
36
67
|
|
|
37
68
|
---
|
|
38
69
|
|
|
39
70
|
## How It Works
|
|
40
71
|
```mermaid
|
|
41
72
|
graph LR
|
|
42
|
-
A["🗣️ Plain English<br/>prompt"] --> B["📋
|
|
73
|
+
A["🗣️ Plain English<br/>prompt"] --> B["📋 Plan<br/>Research & design"]
|
|
43
74
|
B --> C["🔨 build_workflow<br/>Assemble JSON"]
|
|
44
75
|
C --> D["✅ Validate<br/>Structure · Nodes · Creds"]
|
|
45
76
|
D --> E{"Pass?"}
|
|
@@ -53,6 +84,26 @@ You say what you want. p58-n8n plans the architecture, builds valid JSON, valida
|
|
|
53
84
|
|
|
54
85
|
---
|
|
55
86
|
|
|
87
|
+
## Install in 30 seconds — AX-Native (recommended)
|
|
88
|
+
|
|
89
|
+
If you have an MCP-aware client (Claude Desktop, Claude Code, Cursor, etc.), the fastest install is to tell your client to do it:
|
|
90
|
+
|
|
91
|
+
> **You:** *"Install the p58-n8n MCP server using `https://github.com/tsvika58/p58-n8n/blob/main/AGENT_INSTALL.md` as the guide."*
|
|
92
|
+
|
|
93
|
+
Your LLM reads our agent install guide, auto-probes for your n8n instance, asks **at most 2 questions** (your n8n API key and — if you have one — your Path58 premium token), writes the config, and tells you to restart. Total: ~30 seconds, two pastes. The agent handles the rest.
|
|
94
|
+
|
|
95
|
+
This is the **AX-Native install** path — every customer-facing operation happens through the agent you already use, per the project's Pillar 3 design (`STRATEGIC_ANCHORS.md` v1.2.0 § Pillar 3 — AX-Native).
|
|
96
|
+
|
|
97
|
+
**Don't have premium / want to try free first?** Tell your agent *"install with free tier only"* — it skips the premium-token question and configures discovery + L1-L3 validation only. Upgrade later by adding `P58_ACCESS_TOKEN` to your config.
|
|
98
|
+
|
|
99
|
+
### Alternatives if you prefer non-agent install
|
|
100
|
+
|
|
101
|
+
- [**Manual JSON config**](docs/INSTALLATION.md) — multi-client guide; you edit the config file yourself
|
|
102
|
+
- [**Claude Desktop Extension (`.mcpb`)**](#claude-desktop-extension-mcpb) — drag-and-drop install; zero-config quick start works instantly
|
|
103
|
+
- See [**Supported clients**](#supported-clients) for verified-tier client coverage
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
56
107
|
## Quick Start
|
|
57
108
|
|
|
58
109
|
**Install and run (no global install needed):**
|
|
@@ -83,22 +134,25 @@ claude mcp add p58-n8n \
|
|
|
83
134
|
}
|
|
84
135
|
```
|
|
85
136
|
|
|
86
|
-
> **Note:**
|
|
87
|
-
|
|
88
|
-
### Supported Clients
|
|
137
|
+
> **Note:** Node/operation/credential *discovery* works offline from the bundled index. Full parameter & connection schemas (needed to actually build) require a premium `P58_ACCESS_TOKEN`. `N8N_API_URL` + `N8N_API_KEY` unlock workflow + credential management on your server.
|
|
138
|
+
### Supported clients
|
|
89
139
|
|
|
90
|
-
| Client |
|
|
91
|
-
|
|
92
|
-
| **Claude
|
|
93
|
-
| **Claude Desktop** |
|
|
94
|
-
| **
|
|
95
|
-
|
|
|
140
|
+
| Client | Status |
|
|
141
|
+
|---|---|
|
|
142
|
+
| **Claude Desktop** (manual config) | ✅ **Verified** — Phase C install matrix C-3 GREEN; canonical demo path |
|
|
143
|
+
| **Claude Desktop Extensions** (`.mcpb` drag-and-drop) | ✅ **Verified — zero-config quick start** (drag, install, save blank for free-tier instant access); ⚠️ premium + n8n full-config requires 7-field manual paste until 0.3.0 (`REQ-2026-06-02-mcpb-config-autofill.md`) |
|
|
144
|
+
| **Claude Code** (CLI / VS Code extension / terminal) | ✅ **Verified** — used end-to-end for RAG-4.97.6.1 RND execution (this task itself) |
|
|
145
|
+
| Cursor / VS Code Copilot / Windsurf | ⚠️ **Documented, verification pending** — should work via standard MCP protocol; please report issues via GitHub Issues |
|
|
146
|
+
| Codex (OpenAI) / Antigravity (Google) / Gemini CLI (legacy) | ⚠️ **Documented, verification pending** — multi-client QA matrix queued post-demo (`REQ-2026-06-02-multi-client-install-qa.md`) |
|
|
96
147
|
|
|
97
|
-
See [
|
|
148
|
+
See [docs/INSTALLATION.md](https://github.com/tsvika58/p58-n8n/blob/main/docs/INSTALLATION.md) for all clients, config templates, and troubleshooting.
|
|
98
149
|
|
|
99
150
|
---
|
|
100
151
|
|
|
101
|
-
##
|
|
152
|
+
## Your Core Toolset
|
|
153
|
+
|
|
154
|
+
p58-n8n surfaces **18 MCP tools** (the Config-C locked set): **5 catalog/validation tools that work offline (free)** plus **13 that operate on your connected n8n** (workflow build/test/deploy + full credential management). Run `setup_check` for the live availability breakdown in your session.<sup>[[3]](#sources)</sup>
|
|
155
|
+
|
|
102
156
|
```mermaid
|
|
103
157
|
graph TB
|
|
104
158
|
subgraph catalog["📚 Catalog Intelligence"]
|
|
@@ -107,7 +161,6 @@ graph TB
|
|
|
107
161
|
end
|
|
108
162
|
|
|
109
163
|
subgraph workflows["⚡ Workflow Management"]
|
|
110
|
-
C["list_workflows<br/><i>Browse & filter workflows</i>"]
|
|
111
164
|
D["get_workflow<br/><i>Fetch workflow by ID</i>"]
|
|
112
165
|
E["build_workflow<br/><i>Plan → validate → fix → deploy → test</i>"]
|
|
113
166
|
F["partial_update_workflow<br/><i>Surgical diff-based updates</i>"]
|
|
@@ -123,44 +176,42 @@ graph TB
|
|
|
123
176
|
end
|
|
124
177
|
```
|
|
125
178
|
|
|
126
|
-
### Catalog
|
|
127
|
-
|
|
128
|
-
**`setup_check`** — Full diagnostic: server version, n8n connectivity, credential count, tool availability. Run this first.
|
|
179
|
+
### Catalog & validation — 5 tools (work offline, free)
|
|
129
180
|
|
|
130
|
-
**`
|
|
131
|
-
|
|
181
|
+
**`setup_check`** — Full diagnostic: server version, n8n connectivity, credential count, live tool availability. Run this first.
|
|
182
|
+
**`get_node_info`** — Look up any of 1,603 nodes: metadata, operations, credential requirements, best-practices, version history. (Full property schemas + config examples require a premium token.)
|
|
183
|
+
**`get_operation_parameters`** / **`get_operation_schema`** — Parameter requirements and schema details for any node operation.
|
|
184
|
+
**`activate_premium`** — Activate premium catalog access with your `P58_ACCESS_TOKEN`.
|
|
132
185
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
**`list_workflows`** / **`get_workflow`** — Browse, filter, and fetch workflows from your n8n server.
|
|
136
|
-
|
|
137
|
-
**`partial_update_workflow`** — Surgical, diff-based updates. Six atomic operations with pre-validation — no need to replace the entire workflow.
|
|
186
|
+
### Workflow engine — 7 tools (need your connected n8n)
|
|
138
187
|
|
|
188
|
+
**`build_workflow`** — The powerhouse. Structured spec → assemble JSON → validate → auto-fix → deploy → test, end-to-end in one call.
|
|
189
|
+
**`test_workflow`** — Auto-detects trigger type (webhook, schedule, manual), executes, and returns per-node results. Handles `respondToWebhook` safely.
|
|
190
|
+
**`get_workflow`** — Fetch a workflow by ID from your n8n server.
|
|
191
|
+
**`partial_update_workflow`** — Surgical, diff-based updates with pre-validation — no need to replace the entire workflow.
|
|
139
192
|
**`activate_workflow`** / **`delete_workflow`** — Toggle state or safely remove workflows.
|
|
193
|
+
**`get_execution_result`** — Detailed per-node execution data for debugging.
|
|
140
194
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
**`get_execution_result`** — Detailed execution data with per-node output for debugging.
|
|
195
|
+
### Credential management — 6 tools (need your connected n8n)
|
|
144
196
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
**`
|
|
148
|
-
|
|
149
|
-
**`test_credential`** — Health-check probe supporting 25 credential types via HTTP and TCP. Know if your Slack token, database connection, or API key is actually working before wiring it into a workflow.
|
|
197
|
+
**`list_credentials`** — Discover credentials on your n8n server with optional schema enrichment and node filtering.
|
|
198
|
+
**`test_credential`** — Health-check probe (HTTP + TCP) — know if a token/connection works before wiring it into a workflow.
|
|
199
|
+
**`create_credential`** / **`update_credential`** / **`delete_credential`** — Full credential lifecycle, validated against the catalog schema.
|
|
200
|
+
**`get_credential_schema`** — Required/optional fields for any of 679 credential types.
|
|
150
201
|
|
|
151
202
|
---
|
|
152
203
|
|
|
153
204
|
## Architecture
|
|
154
205
|
```mermaid
|
|
155
206
|
graph TB
|
|
156
|
-
Client["AI Client<br/><i>Claude · Cursor · Windsurf</i>"]
|
|
207
|
+
Client["AI Client<br/><i>Claude Desktop · Claude Code · VS Code · Cursor · Windsurf · Codex · Antigravity</i>"]
|
|
157
208
|
Client -->|"MCP Protocol (stdio)"| Server
|
|
158
209
|
|
|
159
210
|
subgraph Server["p58-n8n Server (local process)"]
|
|
160
211
|
direction TB
|
|
161
|
-
Tools["
|
|
162
|
-
Tools --> Catalog["📚 Bundled
|
|
163
|
-
Tools --> Validation["✅ Validation Engine<br/><i>L1
|
|
212
|
+
Tools["18 MCP Tools"]
|
|
213
|
+
Tools --> Catalog["📚 Bundled Index<br/><i>1,603 node + 14,805 op names<br/>679 credential types</i>"]
|
|
214
|
+
Tools --> Validation["✅ Validation Engine<br/><i>Multi-layer L1–L6</i>"]
|
|
164
215
|
Tools --> AutoFix["🔧 Auto-Fix Engine<br/><i>Deterministic repair</i>"]
|
|
165
216
|
end
|
|
166
217
|
|
|
@@ -172,7 +223,7 @@ graph TB
|
|
|
172
223
|
style AutoFix fill:#0f3460,stroke:#16213e,color:#fff
|
|
173
224
|
```
|
|
174
225
|
|
|
175
|
-
p58-n8n runs as a **local stdio process** — no cloud, no telemetry, no external servers. Your credentials and workflow data never leave your machine. The bundled catalog (
|
|
226
|
+
p58-n8n runs as a **local stdio process** — no cloud, no telemetry, no external servers. Your credentials and workflow data never leave your machine. The bundled index provides node/operation/credential **discovery** offline; the **enriched catalog** (parameter & connection schemas) is served via the premium REST proxy. Connect your n8n server to unlock workflow CRUD, credential management, and execution.
|
|
176
227
|
|
|
177
228
|
---
|
|
178
229
|
|
|
@@ -181,7 +232,7 @@ Every workflow passes through multi-layer validation before deployment:
|
|
|
181
232
|
|
|
182
233
|
```mermaid
|
|
183
234
|
graph LR
|
|
184
|
-
subgraph public["
|
|
235
|
+
subgraph public["Static validation (pre-deploy)"]
|
|
185
236
|
L1["L1 Structure<br/><i>JSON schema, node graph,<br/>trigger rules ~30ms</i>"]
|
|
186
237
|
L2["L2 Nodes<br/><i>Node existence, versions,<br/>operation validity ~60ms</i>"]
|
|
187
238
|
L3["L3 Credentials<br/><i>Type matching, required<br/>fields, schema check ~80ms</i>"]
|
|
@@ -194,12 +245,13 @@ graph LR
|
|
|
194
245
|
|
|
195
246
|
Validation runs against the **real catalog** — not LLM guesses. When validation fails, the auto-fix engine applies deterministic repairs (reconnect orphaned nodes, add missing credentials, patch parameter types) before retrying. No extra LLM calls. No extra cost.
|
|
196
247
|
|
|
248
|
+
|
|
197
249
|
---
|
|
198
250
|
|
|
199
251
|
## What Makes p58 Unique
|
|
200
|
-
### 🎯
|
|
252
|
+
### 🎯 Offline Discovery Index
|
|
201
253
|
|
|
202
|
-
The npm package ships
|
|
254
|
+
The npm package ships an offline **discovery index** — 1,603 node names, 14,805 operation names, and 679 credential types<sup>[[1]](#sources)</sup> — so your agent can browse what n8n offers with no database, API key, or internet. The **enriched catalog** (parameter schemas, connection rules, config examples) that powers actual building is unlocked with a premium `P58_ACCESS_TOKEN` (see [Free vs Premium](#-free-vs-premium)).
|
|
203
255
|
|
|
204
256
|
### 🔄 Full Lifecycle — Not Just JSON Generation
|
|
205
257
|
|
|
@@ -207,27 +259,37 @@ Most tools generate workflow JSON and stop. p58-n8n runs the complete cycle: pla
|
|
|
207
259
|
|
|
208
260
|
### 🔑 Credential Management — A Category No One Else Touches
|
|
209
261
|
|
|
210
|
-
Discover what credentials exist on your server, health-check them with real HTTP/TCP probes, and wire them into workflows automatically
|
|
262
|
+
Discover what credentials exist on your server, health-check them with real HTTP/TCP probes, and wire them into workflows automatically — the only n8n MCP we know of with full credential lifecycle management.
|
|
211
263
|
|
|
212
264
|
### ✅ Deterministic Validation & Auto-Fix
|
|
213
265
|
|
|
214
|
-
Validation runs against real catalog data, not LLM inference. When issues are found, deterministic fixers repair them — no extra tokens burned, no hallucinated fixes. The result:
|
|
266
|
+
Validation runs against real catalog data, not LLM inference. When issues are found, deterministic fixers repair them — no extra tokens burned, no hallucinated fixes. The result: catalog-backed repairs and the strictest one-shot-verified (STRONG ⭐) proof of any n8n MCP we've measured.<sup>[[2]](#sources)</sup>
|
|
215
267
|
|
|
216
268
|
### 🧪 Built-In Test Loop
|
|
217
269
|
|
|
218
270
|
`test_workflow` auto-detects your trigger type, executes safely (including webhook-aware flows), and returns per-node results. `get_execution_result` gives you detailed debug data. No need to leave the conversation to verify your workflow works.
|
|
219
271
|
|
|
220
|
-
###
|
|
272
|
+
### ⚡ Fewer Turns
|
|
273
|
+
|
|
274
|
+
Structured catalog data means smaller prompts and fewer back-and-forth turns. On the v5 canonical shootout, p58 averaged **6.2 turns/pass with Opus and 7.5 with Sonnet** (18.4 with Haiku)<sup>[[2]](#sources)</sup> — the agent isn't rediscovering n8n's schema from scratch on every build.
|
|
275
|
+
|
|
276
|
+
### 📊 Free vs Premium
|
|
277
|
+
|
|
278
|
+
p58-n8n has two **independent** dimensions: the **catalog tier** (how much node intelligence the agent gets) and your **n8n engine** (needed to build/deploy/test). They're orthogonal.
|
|
221
279
|
|
|
222
|
-
|
|
280
|
+
| Catalog tier | **Free** (npm default) | **Premium** (`P58_ACCESS_TOKEN`) |
|
|
281
|
+
|---|---|---|
|
|
282
|
+
| **Catalog** | Offline discovery **index**: 1,603 node + 14,805 operation names, 679 credential types, and which creds each node needs<sup>[[1]](#sources)</sup> | Live **enriched** catalog: parameter schemas, connection rules, node properties, config examples, gotchas |
|
|
283
|
+
| **Validation** | L1–L3 (structure · node existence/versions · credential types) | adds L4–L6 (connection rules · parameter config · deep patterns)<sup>[[6]](#sources)</sup> |
|
|
284
|
+
| **Price** | $0 — default install state | per [Path58](https://path58.com) |
|
|
223
285
|
|
|
224
|
-
|
|
286
|
+
> **n8n engine (orthogonal):** building, deploying, testing, and credential management run against *your own* n8n via `N8N_API_URL` + `N8N_API_KEY` — independent of the catalog tier above.
|
|
225
287
|
|
|
226
|
-
|
|
288
|
+
Activate premium directly from your AI assistant:
|
|
227
289
|
|
|
228
290
|
> *"Run `activate_premium` with my access token"*
|
|
229
291
|
|
|
230
|
-
Your token is validated, stored locally at `~/.config/p58-n8n/config.json`, and used automatically on every session. If the premium API is unreachable, p58-n8n
|
|
292
|
+
Your token is validated, stored locally at `~/.config/p58-n8n/config.json`, and used automatically on every session. If the premium API is unreachable, p58-n8n falls back to the bundled index — you keep working without interruption.
|
|
231
293
|
|
|
232
294
|
---
|
|
233
295
|
|
|
@@ -267,10 +329,12 @@ p58-n8n runs as a local stdio process. There are no cloud relays, no analytics e
|
|
|
267
329
|
|
|
268
330
|
| Layer | Variables | Purpose |
|
|
269
331
|
|-------|----------|---------|
|
|
270
|
-
| **
|
|
271
|
-
| **
|
|
332
|
+
| **Premium catalog** | `P58_ACCESS_TOKEN` | Unlocks the full enriched catalog + private intelligence via the Path58 REST proxy. *Knowledge about n8n* — does **not** touch your n8n engine. |
|
|
333
|
+
| **n8n engine (API key)** | `N8N_API_URL` + `N8N_API_KEY` | Workflow CRUD, activation, execution, and credential management on *your* n8n. |
|
|
334
|
+
| **Session Auth** (optional) | `N8N_USER_EMAIL` + `N8N_USER_PASSWORD` | Credential testing (`test_credential`). Without it, every tool works except `test_credential`, which prompts per-call. |
|
|
335
|
+
| **Cloudflare Access** (if applicable) | `CF_ACCESS_CLIENT_ID` + `CF_ACCESS_CLIENT_SECRET` | Service-token headers for an n8n instance behind Cloudflare Access. See [AGENT_INSTALL.md](AGENT_INSTALL.md) Step 3c and the [CF-Access runbook](docs/mcp-install-cloudflare-access-runbook.md). |
|
|
272
336
|
|
|
273
|
-
|
|
337
|
+
> **Premium vs engine boundary:** `P58_ACCESS_TOKEN` alone gives you catalog/intelligence (works with no n8n). Live workflow operations (`build_workflow`, `test_workflow`, credential CRUD) require `N8N_API_URL` + `N8N_API_KEY`. The premium proxy serves *knowledge about* n8n; it does not proxy to your n8n engine.
|
|
274
338
|
|
|
275
339
|
### Your Responsibility
|
|
276
340
|
|
|
@@ -304,25 +368,25 @@ Looks up the Slack credential schema, creates with validation, health-checks the
|
|
|
304
368
|
## FAQ
|
|
305
369
|
|
|
306
370
|
**Q: Do I need a running n8n instance?**
|
|
307
|
-
A:
|
|
371
|
+
A: For discovery, no — the bundled index gives you node/operation/credential lookup offline. Full schema intelligence (parameters, connections) comes with a premium token; deploying, executing, and managing credentials need your own n8n connected via `N8N_API_URL` + `N8N_API_KEY`.
|
|
308
372
|
|
|
309
373
|
**Q: Which AI clients are supported?**
|
|
310
|
-
A: Claude Desktop, Claude Code, Cursor, and
|
|
374
|
+
A: Claude Desktop (chat + Cowork), Claude Code, VS Code, Cursor, Windsurf, Codex (OpenAI), and Antigravity (Google). See [docs/INSTALLATION.md](https://github.com/tsvika58/p58-n8n/blob/main/docs/INSTALLATION.md) for all clients with config paths and key notes.
|
|
311
375
|
|
|
312
376
|
**Q: Is my data sent to any cloud service?**
|
|
313
377
|
A: No. p58-n8n is a local stdio process. No telemetry, no cloud relay. Your credentials and workflow data never leave your machine.
|
|
314
378
|
|
|
315
379
|
**Q: What's the difference between the free package and premium?**
|
|
316
|
-
A: The npm package includes
|
|
380
|
+
A: The npm package includes all 18 tools, the bundled **discovery index** (1,603 node names, 14,805 operation names, 679 credential types),<sup>[[1]](#sources)</sup> L1–L3 validation, and deterministic auto-fix. Premium (via [Path58](https://path58.com), activated with a `P58_ACCESS_TOKEN`) adds the **enriched catalog** — parameter schemas, connection rules, config examples, gotchas — plus L4–L6 validation.<sup>[[6]](#sources)</sup> See [Free vs Premium](#-free-vs-premium).
|
|
317
381
|
|
|
318
382
|
**Q: How does validation work without premium?**
|
|
319
|
-
A:
|
|
383
|
+
A: Validation runs against whatever catalog the server has. With the bundled catalog (free), it checks structure, node existence/versions, and credential types — catching the large majority of issues. Premium's enriched catalog adds the raw parameter and connection data that powers deeper connection-rule, parameter, and pattern checks.
|
|
320
384
|
|
|
321
385
|
**Q: Can I use this in production?**
|
|
322
386
|
A: Yes. The BSL 1.1 license allows any use — personal, commercial, enterprise. The only restriction: you may not use this code to build and sell a competing n8n MCP server product.
|
|
323
387
|
|
|
324
388
|
**Q: What happens on March 28, 2028?**
|
|
325
|
-
A: The
|
|
389
|
+
A: The Business Source License 1.1 converts to the MIT License — that's the Change Date in [LICENSE](LICENSE). No restrictions at all after that date.
|
|
326
390
|
|
|
327
391
|
**Q: How do I get an n8n API key?**
|
|
328
392
|
A: In n8n: Settings → API → Create API Key. Paste it into your MCP config as `N8N_API_KEY`.
|
|
@@ -336,17 +400,32 @@ p58-n8n is licensed under the [Business Source License 1.1](LICENSE).
|
|
|
336
400
|
|
|
337
401
|
**One restriction:** You may not use this code to build and sell a competing n8n MCP server product.
|
|
338
402
|
|
|
339
|
-
**
|
|
403
|
+
**BSL 1.1 → MIT on 2028-03-28.** On the Change Date the license converts to the MIT License<sup>[[4]](#sources)</sup>; after that, no restrictions at all.
|
|
340
404
|
|
|
341
405
|
---
|
|
342
406
|
|
|
343
407
|
## Contributing
|
|
344
408
|
|
|
345
|
-
p58-n8n is in **
|
|
409
|
+
p58-n8n is in **pre-softlaunch**<sup>[[5]](#sources)</sup> (early demo cohort). Issues and feedback welcome:
|
|
346
410
|
|
|
347
411
|
- **Bugs:** [GitHub Issues](https://github.com/tsvika58/p58-n8n/issues)
|
|
348
412
|
- **Email:** tvagman@gmail.com
|
|
349
413
|
|
|
350
414
|
---
|
|
351
415
|
|
|
352
|
-
|
|
416
|
+
## Sources
|
|
417
|
+
|
|
418
|
+
Every catalog and performance number in this README is sourced from a canonical artifact:
|
|
419
|
+
|
|
420
|
+
1. **Catalog counts** — 1,603 nodes / 14,805 operations / 679 credential types: the bundled `src/data/public-catalog/` index (`manifest.json`, `bundle_type: public-basic` — node/operation/credential **names + metadata only, no parameter or connection schemas**), generated from the Path58 catalog database (migration `20260525102247`). The premium proxy reports identical counts (`setup_check.catalog`) and additionally serves the enriched per-node schemas.
|
|
421
|
+
2. **Performance** — STRONG ⭐ 42% Opus / 38% Sonnet / 4% Haiku; pass 100% / 100% / 94%; 6.2 / 7.5 / 18.4 turns/pass; competitors 0% verified-green: the *P58 v5 Performance Report* (RAG-4.97.8), canonical 250-cell golden07 shootout (P58 arms) + 12-arm cross-architecture shootout (320 cells, competitor arms), scored by the canonical `per-cell-outcome-1.1.0` reclassifier. The per-cell schema is published so anyone can re-score — see *Want to check our claims?* above.
|
|
422
|
+
3. **Tool count** — `src/mcp/tools/index.ts` registers 18 tools (14 core + 4 credential-management); live availability per `setup_check`.
|
|
423
|
+
4. **License** — [LICENSE](LICENSE): Business Source License 1.1, Change Date 2028-03-28, Change License MIT.
|
|
424
|
+
5. **Launch stage** — Path58 internal sprint context (current stage: pre-softlaunch).
|
|
425
|
+
6. **Free vs premium tiers** — the free bundle's catalog adapter (`src/mcp/adapters/free-catalog.ts`) returns parameters, connection rules, and node properties as empty, so L4–L6 validation requires the premium enriched catalog while L1–L3 run on the bundled index. Tier model per the Path58 tier-model design (Free = bundled snapshot; Premium = live VPS-proxy catalog).
|
|
426
|
+
|
|
427
|
+
Definitions of STRONG ⭐ / pass-rate / verification tiers follow the formal `is_1s1k_strong(cell)` predicate in the Path58 Strategic Anchors (v1.2.0).
|
|
428
|
+
|
|
429
|
+
---
|
|
430
|
+
|
|
431
|
+
**Built by [Path58](https://path58.com)** · Node.js 18+ required
|