mcp_config.json 806 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "mcpServers": {
  3. "filesystem": {
  4. "command": "npx",
  5. "args": [
  6. "-y",
  7. "@modelcontextprotocol/server-filesystem",
  8. "/Users/kadxy/Desktop"
  9. ]
  10. },
  11. "docker-mcp": {
  12. "command": "uvx",
  13. "args": ["docker-mcp"]
  14. },
  15. "difyworkflow": {
  16. "command": "mcp-difyworkflow-server",
  17. "args": ["-base-url", "23"],
  18. "env": {
  19. "DIFY_WORKFLOW_NAME": "23",
  20. "DIFY_API_KEYS": "23"
  21. }
  22. },
  23. "postgres": {
  24. "command": "docker",
  25. "args": ["run", "-i", "--rm", "mcp/postgres", null]
  26. },
  27. "playwright": {
  28. "command": "npx",
  29. "args": ["-y", "@executeautomation/playwright-mcp-server"]
  30. },
  31. "gdrive": {
  32. "command": "npx",
  33. "args": ["-y", "@modelcontextprotocol/server-gdrive"]
  34. }
  35. }
  36. }