- CLAUDE.md with project docs and architecture - n8n-mcp config example (.mcp.json.example) - 7 gandalf skills (jump, hai, docker, status, remote-env, orchestrate, skills) - hai-infra + hai-tasks MCP server connections - .gitignore for secrets Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
547 B
Plaintext
25 lines
547 B
Plaintext
{
|
|
"mcpServers": {
|
|
"n8n-mcp": {
|
|
"command": "npx",
|
|
"args": ["n8n-mcp"],
|
|
"env": {
|
|
"MCP_MODE": "stdio",
|
|
"LOG_LEVEL": "error",
|
|
"DISABLE_CONSOLE_OUTPUT": "true",
|
|
"N8N_API_URL": "http://localhost:5678",
|
|
"N8N_API_KEY": "YOUR_N8N_API_KEY_HERE",
|
|
"N8N_MCP_TELEMETRY_DISABLED": "true"
|
|
}
|
|
},
|
|
"hai-infra": {
|
|
"type": "sse",
|
|
"url": "https://infra.hofmanns.ai/sse"
|
|
},
|
|
"hai-tasks": {
|
|
"type": "sse",
|
|
"url": "https://mcp.hofmanns.ai/sse"
|
|
}
|
|
}
|
|
}
|