opencode.jsonc 625 B

12345678910111213141516171819202122232425262728
  1. {
  2. "$schema": "https://opencode.ai/config.json",
  3. "skills": {
  4. "paths": ["~/.config/opencode/skills-repo/skills"]
  5. },
  6. "mcp": {
  7. "postgres": {
  8. "type": "local",
  9. "command": [
  10. "npx",
  11. "-y",
  12. "@modelcontextprotocol/server-postgres",
  13. "postgres://mcp:mcp_sandbox_pw@localhost:5432/mcp"
  14. ],
  15. "enabled": true
  16. },
  17. "flymcp": {
  18. "type": "local",
  19. "command": ["/home/i78700es/.local/bin/flymcp"],
  20. "enabled": true
  21. },
  22. "repomix": {
  23. "type": "local",
  24. "command": ["npx", "-y", "repomix@latest", "--mcp"],
  25. "enabled": true
  26. }
  27. }
  28. }