mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-03-22 10:23:08 +00:00
Disable 3 MCP Apps (workflow-list, execution-history, health-dashboard) that show as collapsed accordions and remove n8n_deploy_template tool mapping that renders blank content. The server sets _meta correctly on the wire but the Claude.ai host ignores it for these tools. Keep the 2 working apps (operation-result, validation-summary) active. Conceived by Romuald Czlonkowski - https://www.aiadvisors.pl/en Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import type { UIAppConfig } from './types';
|
|
|
|
export const UI_APP_CONFIGS: UIAppConfig[] = [
|
|
{
|
|
id: 'operation-result',
|
|
displayName: 'Operation Result',
|
|
description: 'Visual summary of workflow operations (create, update, delete, test)',
|
|
uri: 'ui://n8n-mcp/operation-result',
|
|
mimeType: 'text/html;profile=mcp-app',
|
|
toolPatterns: [
|
|
'n8n_create_workflow',
|
|
'n8n_update_full_workflow',
|
|
'n8n_update_partial_workflow',
|
|
'n8n_delete_workflow',
|
|
'n8n_test_workflow',
|
|
'n8n_autofix_workflow',
|
|
// n8n_deploy_template disabled: Claude.ai renders blank content for this tool
|
|
],
|
|
},
|
|
{
|
|
id: 'validation-summary',
|
|
displayName: 'Validation Summary',
|
|
description: 'Visual summary of node and workflow validation results',
|
|
uri: 'ui://n8n-mcp/validation-summary',
|
|
mimeType: 'text/html;profile=mcp-app',
|
|
toolPatterns: [
|
|
'validate_node',
|
|
'validate_workflow',
|
|
'n8n_validate_workflow',
|
|
],
|
|
},
|
|
// workflow-list, execution-history, health-dashboard disabled:
|
|
// Claude.ai does not render these apps (shows collapsed accordions).
|
|
// The server sets _meta correctly on the wire but the host ignores it.
|
|
// Re-enable once the host-side issue is resolved.
|
|
];
|