@path58/p58-n8n 0.2.11 → 0.2.12
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/CHANGELOG.md +1 -0
- package/README.md +35 -30
- package/dist/mcp/server.bundle.cjs +24129 -16132
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
<<<<<<< HEAD
|
|
8
9
|
## [0.2.11] - 2026-03-11
|
|
9
10
|
|
|
10
11
|
### Added
|
package/README.md
CHANGED
|
@@ -126,9 +126,9 @@ p58-n8n uses 80% less token context than n8n-mcp by serving structured catalog d
|
|
|
126
126
|
|
|
127
127
|
---
|
|
128
128
|
|
|
129
|
-
## 35 Tools in
|
|
129
|
+
## 35 MCP Tools in 8 Categories
|
|
130
130
|
|
|
131
|
-
###
|
|
131
|
+
### Schema & Node Intelligence
|
|
132
132
|
|
|
133
133
|
| Tool | What it does |
|
|
134
134
|
|------|-------------|
|
|
@@ -136,66 +136,71 @@ p58-n8n uses 80% less token context than n8n-mcp by serving structured catalog d
|
|
|
136
136
|
| `get_operation_schema` | Exact parameter requirements for any node operation (ground truth, not LLM guesses) |
|
|
137
137
|
| `check_parameter` | Real-time parameter validation — type checking, enum validation, typo detection |
|
|
138
138
|
| `suggest_fix` | Concrete fix suggestions for validation issues — rename, add, remove, or replace |
|
|
139
|
-
| `list_nodes` | Browse and search 1,
|
|
139
|
+
| `list_nodes` | Browse and search 1,982 n8n nodes by category or keyword |
|
|
140
140
|
| `list_operations` | All operations for a node type, grouped by resource |
|
|
141
|
-
| `get_node_info` | Full node details — operations, credentials, properties, version |
|
|
141
|
+
| `get_node_info` | Full node details — operations, credentials, properties, config examples, version info |
|
|
142
142
|
| `find_similar_pattern` | Search 10,003 real workflows for working examples |
|
|
143
143
|
|
|
144
|
-
###
|
|
144
|
+
### Workflow CRUD
|
|
145
145
|
|
|
146
146
|
| Tool | What it does |
|
|
147
147
|
|------|-------------|
|
|
148
|
-
| `
|
|
148
|
+
| `create_workflow` | Create a workflow on your n8n server (L1-L4 validation gate) |
|
|
149
|
+
| `get_workflow` | Fetch a deployed workflow by ID |
|
|
149
150
|
| `list_workflows` | List all workflows with filtering and pagination |
|
|
150
|
-
| `create_workflow` | Create a workflow on your n8n server |
|
|
151
151
|
| `update_workflow` | Replace a workflow entirely |
|
|
152
|
-
| `delete_workflow` | Delete a workflow (
|
|
153
|
-
| `execute_workflow` | Trigger workflow execution |
|
|
154
|
-
| `get_execution_result` | Fetch
|
|
152
|
+
| `delete_workflow` | Delete a workflow (idempotent) |
|
|
153
|
+
| `execute_workflow` | Trigger workflow execution (webhook, schedule, or manual) |
|
|
154
|
+
| `get_execution_result` | Fetch execution details with per-node debug data |
|
|
155
155
|
|
|
156
|
-
###
|
|
156
|
+
### Smart Deploy
|
|
157
157
|
|
|
158
158
|
| Tool | What it does |
|
|
159
159
|
|------|-------------|
|
|
160
|
-
| `validated_create` | Validate
|
|
161
|
-
| `validated_update` | Validate
|
|
160
|
+
| `validated_create` | Validate → autofix → auto-wire credentials → inject config → deploy atomically |
|
|
161
|
+
| `validated_update` | Validate → autofix → update atomically |
|
|
162
162
|
| `activate_workflow` | Toggle workflow active/inactive state |
|
|
163
|
-
| `get_session_metrics` | Token usage and cost tracking for the current session |
|
|
164
163
|
| `server_health` | Check your n8n instance connectivity and status |
|
|
164
|
+
| `get_session_metrics` | Token usage and cost tracking for the current session |
|
|
165
165
|
|
|
166
|
-
###
|
|
166
|
+
### Test & Iterate
|
|
167
167
|
|
|
168
168
|
| Tool | What it does |
|
|
169
169
|
|------|-------------|
|
|
170
|
-
| `test_workflow` |
|
|
171
|
-
| `server_autofix` |
|
|
172
|
-
| `partial_update_workflow` | Diff-based
|
|
173
|
-
| `manage_executions` | List,
|
|
174
|
-
| `deploy_template` |
|
|
170
|
+
| `test_workflow` | Auto-detect trigger type and execute (respondToWebhook-aware, safe deactivation) |
|
|
171
|
+
| `server_autofix` | Closed-loop: deploy → test → validate → fix → update → re-test (up to 10 iterations) |
|
|
172
|
+
| `partial_update_workflow` | Diff-based surgical updates — 6 operations, atomic pre-validation |
|
|
173
|
+
| `manage_executions` | List, get, or delete execution records with batch support |
|
|
174
|
+
| `deploy_template` | Fetch and deploy a template from the public n8n template library |
|
|
175
175
|
|
|
176
|
-
###
|
|
176
|
+
### Workflow Generation
|
|
177
177
|
|
|
178
178
|
| Tool | What it does |
|
|
179
179
|
|------|-------------|
|
|
180
|
-
| `plan_workflow` |
|
|
181
|
-
| `build_workflow` |
|
|
180
|
+
| `plan_workflow` | Research templates, schemas, credentials, and architecture before building |
|
|
181
|
+
| `build_workflow` | Assemble → validate → autofix → deploy → test from a structured spec |
|
|
182
182
|
|
|
183
|
-
###
|
|
183
|
+
### Credential Lifecycle
|
|
184
184
|
|
|
185
185
|
| Tool | What it does |
|
|
186
186
|
|------|-------------|
|
|
187
|
-
| `list_credentials` | List n8n server credentials with optional schema enrichment |
|
|
187
|
+
| `list_credentials` | List n8n server credentials with optional schema enrichment and node filtering |
|
|
188
188
|
| `get_credential_schema` | Required and optional fields for any of 679 credential types (fuzzy match) |
|
|
189
|
-
| `create_credential` |
|
|
190
|
-
| `test_credential` | Health-check probe
|
|
191
|
-
| `update_credential` |
|
|
189
|
+
| `create_credential` | Schema-validated credential creation with duplicate detection |
|
|
190
|
+
| `test_credential` | Health-check probe for 25 credential types (HTTP + TCP) |
|
|
191
|
+
| `update_credential` | Rename a credential on the server |
|
|
192
192
|
| `delete_credential` | Safe deletion with dependent workflow scan |
|
|
193
193
|
|
|
194
|
-
###
|
|
194
|
+
### Runtime Configuration
|
|
195
|
+
|
|
196
|
+
| Tool | What it does |
|
|
197
|
+
|------|-------------|
|
|
198
|
+
| `collect_config` | Interactive config collection — spreadsheet IDs, webhook URLs, channel IDs, etc. |
|
|
199
|
+
|
|
200
|
+
### Diagnostics
|
|
195
201
|
|
|
196
202
|
| Tool | What it does |
|
|
197
203
|
|------|-------------|
|
|
198
|
-
| `collect_config` | Detect missing node configuration from your live n8n instance (covers 2,494 known gaps) |
|
|
199
204
|
| `setup_check` | Diagnostic report — server version, n8n connectivity, credential count, tool availability |
|
|
200
205
|
|
|
201
206
|
Full reference with input/output schemas: [docs/TOOLS.md](docs/TOOLS.md)
|