Files
n8n-mcp/src/mcp/tool-docs/workflow_management/index.ts
czlonkowski 4390b72d2a fix: integrate webhook autofixer with MCP server and improve template sanitization
- Register n8n_autofix_workflow handler in MCP server
- Export n8nAutofixWorkflowDoc in tool documentation indices
- Use normalizeNodeType utility in workflow validator for consistent type handling
- Add defensive null checks in template sanitizer to prevent runtime errors
- Update workflow validator test to handle new error message formats

These changes complete the webhook autofixer integration, ensuring the tool
is properly exposed through the MCP server and documentation system.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 11:43:24 +02:00

15 lines
997 B
TypeScript

export { n8nCreateWorkflowDoc } from './n8n-create-workflow';
export { n8nGetWorkflowDoc } from './n8n-get-workflow';
export { n8nGetWorkflowDetailsDoc } from './n8n-get-workflow-details';
export { n8nGetWorkflowStructureDoc } from './n8n-get-workflow-structure';
export { n8nGetWorkflowMinimalDoc } from './n8n-get-workflow-minimal';
export { n8nUpdateFullWorkflowDoc } from './n8n-update-full-workflow';
export { n8nUpdatePartialWorkflowDoc } from './n8n-update-partial-workflow';
export { n8nDeleteWorkflowDoc } from './n8n-delete-workflow';
export { n8nListWorkflowsDoc } from './n8n-list-workflows';
export { n8nValidateWorkflowDoc } from './n8n-validate-workflow';
export { n8nAutofixWorkflowDoc } from './n8n-autofix-workflow';
export { n8nTriggerWebhookWorkflowDoc } from './n8n-trigger-webhook-workflow';
export { n8nGetExecutionDoc } from './n8n-get-execution';
export { n8nListExecutionsDoc } from './n8n-list-executions';
export { n8nDeleteExecutionDoc } from './n8n-delete-execution';