mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
Root Cause:
- Database lacks nodes_fts FTS5 table, causing fallback to searchNodesLIKE
- searchNodesLIKE didn't support includeExamples parameter
- This broke search_nodes includeExamples functionality
Fix:
- Added includeExamples parameter to searchNodesLIKE signature
- Implemented example fetching in both exact phrase and normal search paths
- Updated searchNodes to pass options to searchNodesLIKE
- Cleaned up all debug logging code
Testing:
- search_nodes({query: "code", includeExamples: true}) now returns 2 examples
- get_node_essentials already worked correctly
- Both tools now fully support P0-R3 template-based examples
Impact:
- Fixes 100% of search_nodes includeExamples calls
- 197 pre-extracted node configurations now accessible via search
- Maintains backward compatibility
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>