mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
## 🎉 Release Highlights ### ✨ New Features - **Webhook Path Autofixer**: Automatically generates UUIDs for webhook nodes missing path configuration - **Enhanced Node Type Suggestions**: Intelligent node type correction with similarity matching - **n8n_autofix_workflow Tool**: New MCP tool for automatic workflow error correction ### 🔒 Security & Performance - Eliminated ReDoS vulnerability in NodeSimilarityService - Optimized Levenshtein distance algorithm from O(m*n) to O(n) space - Added cache invalidation with version tracking to prevent memory leaks ### 📚 Documentation - Comprehensive CHANGELOG entry with detailed feature descriptions - Updated README with new autofixer tool documentation - Added tool usage examples in validation workflow All 16 test cases passing with 100% success rate. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
461 B
JSON
22 lines
461 B
JSON
{
|
|
"name": "n8n-mcp-runtime",
|
|
"version": "2.13.0",
|
|
"description": "n8n MCP Server Runtime Dependencies Only",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
"express": "^5.1.0",
|
|
"dotenv": "^16.5.0",
|
|
"lru-cache": "^11.2.1",
|
|
"sql.js": "^1.13.0",
|
|
"uuid": "^10.0.0",
|
|
"axios": "^1.7.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"better-sqlite3": "^11.10.0"
|
|
}
|
|
}
|