mcp_config.json 395 B

12345678910111213141516171819
  1. {
  2. "mcpServers": {
  3. "local-stdio-calculator": {
  4. "type": "stdio",
  5. "command": "python",
  6. "args": ["-m", "calculator"]
  7. },
  8. "remote-sse-server": {
  9. "type": "sse",
  10. "url": "https://api.example.com/sse",
  11. "disabled": true
  12. },
  13. "remote-http-server": {
  14. "type": "http",
  15. "url": "https://api.example.com/mcp",
  16. "disabled": true
  17. }
  18. }
  19. }