1
0

mcp.json.example 617 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "mcpServers": {
  3. "brave-search": {
  4. "command": "npx",
  5. "args": [
  6. "-y",
  7. "@modelcontextprotocol/server-brave-search"
  8. ],
  9. "env": {
  10. "BRAVE_API_KEY": "your-api-key-here"
  11. }
  12. },
  13. "filesystem": {
  14. "command": "npx",
  15. "args": [
  16. "-y",
  17. "@modelcontextprotocol/server-filesystem",
  18. "/path/to/allowed/directory"
  19. ]
  20. },
  21. "github": {
  22. "command": "npx",
  23. "args": [
  24. "-y",
  25. "@modelcontextprotocol/server-github"
  26. ],
  27. "env": {
  28. "GITHUB_TOKEN": "your-github-token-here"
  29. }
  30. }
  31. }
  32. }