mcp.json 589 B

123456789101112131415161718192021222324
  1. {
  2. "mcpServers": {
  3. "postgres": {
  4. "command": "./tools/toolbox.exe",
  5. "args": ["--prebuilt", "postgres", "--stdio"],
  6. "env": {
  7. "POSTGRES_HOST": "192.168.3.143",
  8. "POSTGRES_PORT": "5432",
  9. "POSTGRES_DATABASE": "dataops",
  10. "POSTGRES_USER": "postgres",
  11. "POSTGRES_PASSWORD": "dataOps"
  12. }
  13. },
  14. "n8n-mcp": {
  15. "command": "node",
  16. "args": ["G:/code-lab/n8n-mcp/dist/mcp/index.js"],
  17. "env": {
  18. "MCP_MODE": "stdio",
  19. "LOG_LEVEL": "error",
  20. "DISABLE_CONSOLE_OUTPUT": "true"
  21. }
  22. }
  23. }
  24. }