- Create dedicated setup documentation for each IDE - Add Claude Code setup with proper CLI commands and screenshots - Add Cursor setup with video tutorial and MCP configuration - Add Windsurf setup with video tutorial and settings instructions - Update README to consolidate IDE setup under "Connect your IDE" section - Include visual guides with screenshots for better user experience - Link all IDE guides to main Claude Project Setup instructions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1.7 KiB
1.7 KiB
Windsurf Setup
Connect n8n-MCP to Windsurf IDE for enhanced n8n workflow development with AI assistance.
Video Tutorial
Watch the complete setup process: n8n-MCP Windsurf Setup Tutorial
Setup Process
1. Access MCP Configuration
- Go to Settings in Windsurf
- Navigate to Windsurf Settings
- Go to MCP Servers > Manage Plugins
- Click "View Raw Config"
2. Add n8n-MCP Configuration
Copy the configuration from this repository and add it to your MCP config:
Basic configuration (documentation tools only):
{
"mcpServers": {
"n8n-mcp": {
"command": "npx",
"args": ["n8n-mcp"],
"env": {
"MCP_MODE": "stdio",
"LOG_LEVEL": "error",
"DISABLE_CONSOLE_OUTPUT": "true"
}
}
}
}
Full configuration (with n8n management tools):
{
"mcpServers": {
"n8n-mcp": {
"command": "npx",
"args": ["n8n-mcp"],
"env": {
"MCP_MODE": "stdio",
"LOG_LEVEL": "error",
"DISABLE_CONSOLE_OUTPUT": "true",
"N8N_API_URL": "https://your-n8n-instance.com",
"N8N_API_KEY": "your-api-key"
}
}
}
}
3. Configure n8n Connection
- Replace
https://your-n8n-instance.comwith your actual n8n URL - Replace
your-api-keywith your n8n API key - Click refresh to apply the changes
4. Set Up Project Instructions
- Create a
.windsurfrulesfile in your project root - Copy the Claude Project instructions from the main README's Claude Project Setup section
