@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 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 7 Tiers
129
+ ## 35 MCP Tools in 8 Categories
130
130
 
131
- ### Tier 1 Validation & Analysis
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,545 n8n nodes by category or keyword |
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
- ### Tier 2 — Server CRUD
144
+ ### Workflow CRUD
145
145
 
146
146
  | Tool | What it does |
147
147
  |------|-------------|
148
- | `get_workflow` | Fetch a workflow from your n8n instance by ID |
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 (safe — checks for dependents) |
153
- | `execute_workflow` | Trigger workflow execution |
154
- | `get_execution_result` | Fetch the result of a completed execution |
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
- ### Tier 3 — Advanced Operations
156
+ ### Smart Deploy
157
157
 
158
158
  | Tool | What it does |
159
159
  |------|-------------|
160
- | `validated_create` | Validate + deploy in one step rejects invalid JSON before it hits your server |
161
- | `validated_update` | Validate + update in one step |
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
- ### Tier 4 — Tool Parity
166
+ ### Test & Iterate
167
167
 
168
168
  | Tool | What it does |
169
169
  |------|-------------|
170
- | `test_workflow` | Sandbox-test a workflow using K2 mock responses (no real credentials needed) |
171
- | `server_autofix` | Run all 35 auto-fixers on a workflow and return the repaired JSON |
172
- | `partial_update_workflow` | Diff-based partial updates — change one node without replacing the whole workflow |
173
- | `manage_executions` | List, filter, and delete workflow execution history |
174
- | `deploy_template` | Deploy a pre-built template from the workflow library |
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
- ### Tier 5 — Workflow Generation
176
+ ### Workflow Generation
177
177
 
178
178
  | Tool | What it does |
179
179
  |------|-------------|
180
- | `plan_workflow` | Generate a structured workflow plan from a natural language description |
181
- | `build_workflow` | Build a complete workflow JSON from a plan uses catalog data for correct parameters |
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
- ### Tier 6 — Credential Management
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` | Create credentials with 5-step validation |
190
- | `test_credential` | Health-check probe — verifies connectivity for top credential types |
191
- | `update_credential` | Partial update GET merge → PATCH (preserves unmodified fields) |
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
- ### Tier 7 — Config Intelligence
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)