mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
Merge pull request #11 from TheSethRose/main
Fix MCP schema validation: Add additionalProperties to workflow nodes array
This commit is contained in:
@@ -140,7 +140,11 @@ export const n8nManagementTools: ToolDefinition[] = [
|
||||
},
|
||||
nodes: {
|
||||
type: 'array',
|
||||
description: 'Complete array of workflow nodes (required if modifying workflow structure)'
|
||||
description: 'Complete array of workflow nodes (required if modifying workflow structure)',
|
||||
items: {
|
||||
type: 'object',
|
||||
additionalProperties: true
|
||||
}
|
||||
},
|
||||
connections: {
|
||||
type: 'object',
|
||||
|
||||
Reference in New Issue
Block a user