mcp_config.ts 969 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. export const MCP_CONF = {
  2. "brave-search": {
  3. command: "npx",
  4. args: ["-y", "@modelcontextprotocol/server-brave-search"],
  5. env: {
  6. BRAVE_API_KEY: "<YOUR_API_KEY>",
  7. },
  8. },
  9. filesystem: {
  10. command: "npx",
  11. args: [
  12. "-y",
  13. "@modelcontextprotocol/server-filesystem",
  14. "/Users/kadxy/Desktop",
  15. ],
  16. },
  17. github: {
  18. command: "npx",
  19. args: ["-y", "@modelcontextprotocol/server-github"],
  20. env: {
  21. GITHUB_PERSONAL_ACCESS_TOKEN: "<YOUR_TOKEN>",
  22. },
  23. },
  24. "google-maps": {
  25. command: "npx",
  26. args: ["-y", "@modelcontextprotocol/server-google-maps"],
  27. env: {
  28. GOOGLE_MAPS_API_KEY: "<YOUR_API_KEY>",
  29. },
  30. },
  31. "aws-kb-retrieval": {
  32. command: "npx",
  33. args: ["-y", "@modelcontextprotocol/server-aws-kb-retrieval"],
  34. env: {
  35. AWS_ACCESS_KEY_ID: "<YOUR_ACCESS_KEY_HERE>",
  36. AWS_SECRET_ACCESS_KEY: "<YOUR_SECRET_ACCESS_KEY_HERE>",
  37. AWS_REGION: "<YOUR_AWS_REGION_HERE>",
  38. },
  39. },
  40. };