code.hofmanns.ai/.mcp.json.example
hofmann 4654f87bb8 Initial setup: Claude Code + n8n MCP integration
- 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>
2026-03-01 20:59:10 +00:00

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"
}
}
}