agents.config.json 580 B

1234567891011121314151617181920212223242526
  1. {
  2. "nanocoder": {
  3. "providers":[
  4. {
  5. "name":"ollama",
  6. "models":[
  7. "gemma3:1b"
  8. ],
  9. "baseUrl":"http://localhost:11434/v1"
  10. }
  11. ],
  12. "mcpServers": [
  13. {
  14. "name":"gogs",
  15. "command":"node",
  16. "args":[
  17. "/data/gogs-mcp/dist/index.js"
  18. ],
  19. "env":{
  20. "GOGS_ACCESS_TOKEN":"5c332ecdfea7813602bbc52930334c3853732791",
  21. "GOGS_SERVER_URL":"https://git.fsociety.hu"
  22. }
  23. }
  24. ]
  25. }
  26. }