mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
33690c5650e680b2c9cfbae75cac81a761742389
8 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
33690c5650 |
feat: rename n8n_trigger_webhook_workflow to n8n_test_workflow with multi-trigger support (#460)
* feat: rename n8n_trigger_webhook_workflow to n8n_test_workflow with multi-trigger support - Rename tool from n8n_trigger_webhook_workflow to n8n_test_workflow - Add support for webhook, form, and chat triggers (auto-detection) - Implement modular trigger system with registry pattern - Add trigger detector for automatic trigger type inference - Remove execute trigger type (n8n public API limitation) - Add comprehensive tests for trigger detection and handlers The tool now auto-detects trigger type from workflow structure and supports all externally-triggerable workflows via n8n's public API. Note: Direct workflow execution (Schedule/Manual triggers) requires n8n's instance-level MCP access, not available via REST API. Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: add SSRF protection to webhook handler and update tests - Add SSRF URL validation to webhook-handler.ts (critical security fix) Aligns with existing SSRF protection in form-handler.ts and chat-handler.ts - Update parameter-validation.test.ts to use new n8n_test_workflow tool name Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: n8n_test_workflow unified trigger tool (v2.28.0) Added new `n8n_test_workflow` tool replacing `n8n_trigger_webhook_workflow`: Features: - Auto-detects trigger type (webhook/form/chat) from workflow - Supports multiple trigger types with type-specific parameters - SSRF protection for all trigger handlers - Extensible handler architecture with registry pattern Changes: - Fixed Zod schema to remove invalid 'execute' trigger type - Updated README.md tool documentation - Added CHANGELOG entry for v2.28.0 - Bumped version to 2.28.0 Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * test: add comprehensive unit tests for trigger handlers Added 87 unit tests across 4 test files to improve code coverage: - base-handler.test.ts (19 tests) - 100% coverage - webhook-handler.test.ts (22 tests) - 100% coverage - chat-handler.test.ts (23 tests) - 100% coverage - form-handler.test.ts (23 tests) - 100% coverage Tests cover: - Input validation and parameter handling - SSRF protection integration - HTTP method handling and URL building - Error response formatting - Execution paths for all trigger types Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com> |
||
|
|
ff69e4ccca |
feat: Tool Consolidation - Reduce MCP Tools by 38% (v2.26.0) (#439)
* feat: Remove 9 low-value tools and consolidate n8n_health_check (v2.25.0) Telemetry-driven tool cleanup to improve API clarity: **Removed Tools (9):** - list_nodes - Use search_nodes instead - list_ai_tools - Use search_nodes with isAITool filter - list_tasks - Low usage (0.02%) - get_database_statistics - Use n8n_health_check - list_templates - Use search_templates or get_templates_for_task - get_node_as_tool_info - Documented in get_node - validate_workflow_connections - Use validate_workflow - validate_workflow_expressions - Use validate_workflow - n8n_list_available_tools - Use n8n_health_check - n8n_diagnostic - Merged into n8n_health_check **Consolidated Tool:** - n8n_health_check now supports mode='diagnostic' for detailed troubleshooting **Tool Count:** - Before: 38 tools - After: 31 tools (18% reduction) Concieved by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: cleanup stale references and update tests after tool removal - Remove handleListAvailableTools dead code from handlers-n8n-manager.ts - Update error messages to reference n8n_health_check(mode="diagnostic") instead of n8n_diagnostic - Update tool counts in diagnostic messages (14 doc tools, 31 total) - Fix error-handling.test.ts to use valid tools (search_nodes, tools_documentation) - Remove obsolete list-tools.test.ts integration tests - Remove unused ListToolsResponse type from response-types.ts - Update tools.ts QUICK REFERENCE to remove list_nodes references - Update tools-documentation.ts to remove references to removed tools - Update tool-docs files to remove stale relatedTools references - Fix tools.test.ts to not test removed tools (list_nodes, list_ai_tools, etc.) - Fix parameter-validation.test.ts to not test removed tools - Update handlers-n8n-manager.test.ts error message expectations All 399 MCP unit tests now pass. Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: update integration tests to use valid tools after v2.25.0 removal Replaced all references to removed tools in integration tests: - list_nodes -> search_nodes - get_database_statistics -> tools_documentation - list_ai_tools -> search_nodes/tools_documentation - list_tasks -> tools_documentation - get_node_as_tool_info -> removed test section Updated test files: - tests/integration/mcp-protocol/basic-connection.test.ts - tests/integration/mcp-protocol/performance.test.ts - tests/integration/mcp-protocol/session-management.test.ts - tests/integration/mcp-protocol/test-helpers.ts - tests/integration/mcp-protocol/tool-invocation.test.ts - tests/integration/telemetry/mcp-telemetry.test.ts - tests/unit/mcp/disabled-tools.test.ts - tests/unit/mcp/tools-documentation.test.ts Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: Tool consolidation v2.26.0 - reduce tools by 38% (31 → 19) Major consolidation of MCP tools using mode-based parameters for better AI agent ergonomics: Node Tools: - get_node_documentation → get_node with mode='documentation' - search_node_properties → get_node with mode='search_properties' - get_property_dependencies → removed Validation Tools: - validate_node_operation + validate_node_minimal → validate_node with mode param Template Tools: - list_node_templates → search_templates with searchMode='nodes' - search_templates_by_metadata → search_templates with searchMode='metadata' - get_templates_for_task → search_templates with searchMode='task' Workflow Getters: - n8n_get_workflow_details/structure/minimal → n8n_get_workflow with mode param Execution Tools: - n8n_list/get/delete_execution → n8n_executions with action param Test updates for all consolidated tools. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en * docs: comprehensive README update for v2.26.0 tool consolidation - Quick Start: Added hosted service (dashboard.n8n-mcp.com) as primary option - Self-hosting: Renamed options to A (npx), B (Docker), C (Local), D (Railway) - Removed: "Memory Leak Fix (v2.20.2)" section (outdated) - Removed: "Known Issues" section (outdated container management) - Claude Project Setup: Updated all tool references to v2.26.0 consolidated tools - validate_node({mode: 'minimal'|'full'}) instead of separate tools - search_templates({searchMode: ...}) unified template search - get_node({mode: 'docs'|'search_properties'}) for documentation - n8n_executions({action: ...}) unified execution management - Available MCP Tools: Updated to show 19 consolidated tools (7 core + 12 mgmt) - Recent Updates: Simplified to just link to CHANGELOG.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en * fix: update tool count from 31 to 19 in diagnostic message 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix(tests): update tool count expectations for v2.26.0 Update handlers-n8n-manager.test.ts to expect new consolidated tool counts (7/12/19) after v2.26.0 tool consolidation. Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com> |
||
|
|
9050967cd6 |
Release v2.24.0: Unified get_node Tool with Code Review Fixes (#437)
* feat(tools): unify node information retrieval with get_node tool Implements v2.24.0 featuring a unified node information tool that consolidates get_node_info and get_node_essentials functionality while adding version history and type structure metadata capabilities. Key Features: - Unified get_node tool with progressive detail levels (minimal/standard/full) - Version history access (versions, compare, breaking changes, migrations) - Type structure metadata integration from v2.23.0 - Token-efficient defaults optimized for AI agents - Backward-compatible via private method preservation Breaking Changes: - Removed get_node_info tool (replaced by get_node with detail='full') - Removed get_node_essentials tool (replaced by get_node with detail='standard') - Tool count: 40 → 39 tools Implementation: - src/mcp/tools.ts: Added unified get_node tool definition - src/mcp/server.ts: Implemented getNode() with 7 mode-specific methods - Type structure integration via TypeStructureService.getStructure() - Updated documentation in CHANGELOG.md and README.md - Version bumped to 2.24.0 Token Costs: - minimal: ~200 tokens (basic metadata) - standard: ~1000-2000 tokens (essential properties, default) - full: ~3000-8000 tokens (complete information) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en Co-Authored-By: Claude <noreply@anthropic.com> * docs: update tools-documentation.ts to reference unified get_node tool Updated all references from deprecated get_node_essentials and get_node_info to the new unified get_node tool with appropriate detail levels. Changes: - Standard Workflow Pattern: Updated to show get_node with detail levels - Configuration Tools: Replaced two separate tool descriptions with unified get_node - Performance Characteristics: Updated to reference get_node detail levels - Usage Notes: Updated recommendation to use get_node with detail='standard' This completes the v2.24.0 unified get_node tool implementation. All 13/13 test scenarios passed in n8n-mcp-tester agent validation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> Conceived by Romuald Członkowski - www.aiadvisors.pl/en * test: update tests to reference unified get_node tool Updated test files to replace references to deprecated get_node_info and get_node_essentials tools with the new unified get_node tool. Changes: - tests/unit/mcp/tools.test.ts: Updated get_node tests and removed references to get_node_essentials in toolsWithExamples array and categories object - tests/unit/mcp/parameter-validation.test.ts: Updated all get_node_info references to get_node throughout the test suite Test results: Successfully reduced test failures from 11 to 3 non-critical failures: - 1 description length test (expected for unified tool with comprehensive docs) - 1 database initialization issue (test infrastructure, not related to changes) - 1 timeout issue (unrelated to changes) All get_node_info → get_node migration tests now pass successfully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> Conceived by Romuald Członkowski - www.aiadvisors.pl/en * fix: implement all code review fixes for v2.24.0 unified get_node tool Comprehensive improvements addressing all critical, high-priority, and code quality issues identified in code review. ## Critical Fixes (Phase 1) - Add missing getNode mock in parameter-validation tests - Shorten tool description from 670 to 288 characters (under 300 limit) ## High Priority Fixes (Phase 2) - Add null safety check in enrichPropertyWithTypeInfo (prevent crashes on null properties) - Add nodeType context to all error messages in handleVersionMode (better debugging) - Optimize version summary fetch (conditional on detail level, skip for minimal mode) - Add comprehensive parameter validation for detail and mode with clear error messages ## Code Quality Improvements (Phase 3) - Refactor property enrichment with new enrichPropertiesWithTypeInfo helper (eliminate duplication) - Add TypeScript interfaces for all return types (replace any with proper union types) - Implement version data caching with 24-hour TTL (improve performance) - Enhance JSDoc documentation with detailed parameter explanations ## New TypeScript Interfaces - VersionSummary: Version metadata structure - NodeMinimalInfo: ~200 token response for minimal detail - NodeStandardInfo: ~1-2K token response for standard detail - NodeFullInfo: ~3-8K token response for full detail - VersionHistoryInfo: Version history response - VersionComparisonInfo: Version comparison response - NodeInfoResponse: Union type for all possible responses ## Testing - All 130 test files passed (3778 tests, 42 skipped) - Build successful with no TypeScript errors - Proper test mocking for unified get_node tool Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: update integration tests to use unified get_node tool Replace all references to deprecated get_node_info and get_node_essentials with the new unified get_node tool in integration tests. ## Changes - Replace get_node_info → get_node in 6 integration test files - Replace get_node_essentials → get_node in 2 integration test files - All tool calls now use unified interface ## Files Updated - tests/integration/mcp-protocol/error-handling.test.ts - tests/integration/mcp-protocol/performance.test.ts - tests/integration/mcp-protocol/session-management.test.ts - tests/integration/mcp-protocol/tool-invocation.test.ts - tests/integration/mcp-protocol/protocol-compliance.test.ts - tests/integration/telemetry/mcp-telemetry.test.ts This fixes CI test failures caused by calling removed tools. Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * test: add comprehensive tests for unified get_node tool Add 81 comprehensive unit tests for the unified get_node tool to improve code coverage of the v2.24.0 implementation. ## Test Coverage ### Parameter Validation (6 tests) - Invalid detail/mode validation with clear error messages - All valid parameter combinations - Default values and node type normalization ### Info Mode Tests (21 tests) - Minimal detail: Basic metadata only, no version info (~200 tokens) - Standard detail: Essentials with version info (~1-2K tokens) - Full detail: Complete info with version info (~3-8K tokens) - includeTypeInfo and includeExamples parameter handling ### Version Mode Tests (24 tests) - versions: Version history and details - compare: Version comparison with proper error handling - breaking: Breaking changes with upgradeSafe flags - migrations: Auto-migratable changes detection ### Helper Methods (18 tests) - enrichPropertyWithTypeInfo: Null safety, type handling, structure hints - enrichPropertiesWithTypeInfo: Array handling, mixed properties - getVersionSummary: Caching with 24-hour TTL ### Error Handling (3 tests) - Repository initialization checks - NodeType context in error messages - Invalid mode/detail handling ### Integration Tests (8 tests) - Mode routing logic - Cache effectiveness across calls - Type safety validation - Edge cases (empty data, alternatives, long names) ## Results - 81 tests passing - 100% coverage of new get_node methods - All parameter combinations tested - All error conditions covered Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: update integration test assertions for unified get_node tool Updated integration tests to match the new unified get_node response structure: - error-handling.test.ts: Added detail='full' parameter for large payload test - tool-invocation.test.ts: Updated property assertions for standard/full detail levels - Fixed duplicate describe block and comparison logic Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: correct property names in integration test for standard detail Updated test to check for requiredProperties and commonProperties instead of essentialProperties to match actual get_node response structure. Conceived by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com> |
||
|
|
af949b09a5 |
test: update parameter validation test for Issue #275 fix
The test expected empty strings to pass validation, but our Issue #275 fix intentionally rejects empty strings to prevent TypeErrors. Change: - Updated test from "should pass" to "should reject" - Now expects error: "String parameters cannot be empty" - Aligns with Issue #275 fix that eliminated 57.4% of production errors The old behavior (allowing empty strings) caused TypeErrors in getNodeTypeAlternatives(). The new behavior (rejecting empty strings) provides clear error messages and prevents crashes. Related: Issue #275 - TypeError prevention 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|
|
0bf0e1cd74 |
fix(tests): remove get_node_for_task references from test suites
Remove references to get_node_for_task tool that was removed in v2.15.0 as part of P0-R3 implementation. Changes: - parameter-validation.test.ts: Remove getNodeForTask mock spy - parameter-validation.test.ts: Remove get_node_for_task from validation test array - tools.test.ts: Remove get_node_for_task from templates category Test results: ✅ parameter-validation.test.ts: 52/52 passed ✅ tools.test.ts: 57/57 passed This completes the removal of get_node_for_task tool across the entire codebase. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|
|
3b767c798c |
fix: update tests for template compression, pagination, and quality filtering
- Fix parameter validation tests to expect mode parameter in getTemplate calls - Update database utils tests to use totalViews > 10 for quality filter - Add comprehensive tests for template service functionality - Fix integration tests for new pagination parameters All CI tests now passing after template system enhancements |
||
|
|
bb774f8c70 |
fix: update parameter validation tests to match new validation format
- Updated 15 failing tests to expect new validation error format - Tests now expect 'tool_name: Validation failed' format instead of 'Missing required parameters' - Fixed type conversion expectations - new validation requires actual numbers, not strings - Updated tests for minimum value constraints (e.g., limit >= 1) - All 52 parameter validation tests now passing Tests were failing in CI because they expected the old error message format but the new validation system uses a more structured format with detailed field-level error messages. |
||
|
|
6cdb52f56f |
feat: comprehensive parameter validation for MCP tools
- Add validateToolParams method with clear error messages - Fix failing tests to expect new parameter validation errors - Create comprehensive parameter validation test suite (52 tests) - Add parameter validation for all n8n management tools - Test numeric parameter conversion and edge cases - Ensure consistent error format across all tools - Verify MCP error response handling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> |