Known Issues
This file tracks limitations that users regularly run into. Most of these require upstream cooperation or larger refactors—feel free to reference this when triaging bugs.
#Hosted OAuth servers (Supabase, GitHub MCP, etc.)
- Supabase’s hosted MCP server accepts Supabase-specific scopes (
projects:read,database:write, etc.) rather than the historicalmcp:toolsdefault. When a provider does not publish usable scope metadata, set the required scopes explicitly with the server definition’soauthScopefield. Other workarounds: - Use Supabase’s supported clients (Cursor, Windsurf).
- Self-host their MCP server and configure PAT headers / custom OAuth.
- Ask Supabase to accept the MCP scope or publish their scope list.
- GitHub’s MCP endpoint (
https://api.githubcopilot.com/mcp/) returns “does not support dynamic client registration” when mcporter attempts to connect. Copilot’s backend expects pre-registered client credentials. ConfigureoauthClientId/oauthClientSecretEnvonly if the provider gives you a usable OAuth app; otherwise use their supported client or token/header workaround. - Some hosted servers reject dynamic client registration before returning any authorization URL. mcporter now fails those flows immediately instead of waiting for a browser callback that cannot arrive. If the provider supports a pre-registered OAuth app, configure
oauthClientId,oauthClientSecretEnv, and the requiredoauthTokenEndpointAuthMethod; otherwise use the provider's supported client or token/header workaround. mcporter auth <server> --no-browserstill starts a loopback callback server and must stay alive until the browser redirects back. Process managers that run commands in short-lived process groups can print the authorization URL and then reap the process tree, leaving no listener on the callback port and no saved tokens. Run headless OAuth from a persistent terminal,tmux, ornohup/a supervisor, and use a configuredoauthRedirectUrlor loopback tunnel when the browser runs elsewhere.
#Output schemas missing/buggy on many servers
- The MCP spec allows servers to omit
outputSchema. In practice, many hosted MCPs return empty or inconsistent schemas, so features that rely on return types (TypeScript signatures, generated CLIs,createServerProxyreturn helpers) may degrade tounknown. - Workarounds: inspect the server’s README / manual docs for output details, or wrap the tool via
createServerProxyand handle the raw envelope manually. - Potential improvement: allow user-provided schema overrides (e.g.,
mcporter config patch, CLI flag to load schema JSON) so we can fill gaps on a per-tool basis.
#Next Steps
- Improve scope negotiation for providers with incomplete discovery metadata and expose the existing
oauthScopeoverride as a CLI flag. - Keep lobbying providers for spec-compliant OAuth behavior.
- Consider adding schema override hooks or auto-caching schema snapshots per tool.
If you run into other recurring pain points, append them here so we can prioritize fixes.