Problem
The stdio server hardcodes https:// when constructing API and web URLs from the --host flag. See
packages/mcp-core/src/api-client/client.ts#L176
this.apiPrefix = `https://${host}/api/0`;
This makes the package unusable for self-hosted Sentry instances that live on internal networks reachable only through VPN and don't have TLS configured.
Proposal
Add an opt-in --insecure-http flag that switches the scheme to http://.
Problem
The stdio server hardcodes
https://when constructing API and web URLs from the--hostflag. Seepackages/mcp-core/src/api-client/client.ts#L176This makes the package unusable for self-hosted Sentry instances that live on internal networks reachable only through VPN and don't have TLS configured.
Proposal
Add an opt-in
--insecure-httpflag that switches the scheme to http://.