http-server.json 502 B

1234567891011121314151617181920
  1. {
  2. "_comment": "Example HTTP MCP server configuration for REST APIs",
  3. "rest-api": {
  4. "type": "http",
  5. "url": "https://api.example.com/mcp",
  6. "headers": {
  7. "Authorization": "Bearer ${API_TOKEN}",
  8. "Content-Type": "application/json",
  9. "X-API-Version": "2024-01-01"
  10. }
  11. },
  12. "internal-service": {
  13. "type": "http",
  14. "url": "https://api.example.com/mcp",
  15. "headers": {
  16. "Authorization": "Bearer ${API_TOKEN}",
  17. "X-Service-Name": "claude-plugin"
  18. }
  19. }
  20. }