feat: Add --insecure option to disable TLS certificate verification#54
Merged
feat: Add --insecure option to disable TLS certificate verification#54
Conversation
Add global --insecure flag and MCPC_INSECURE environment variable to skip TLS certificate verification when connecting to MCP servers with self-signed or invalid certificates. The flag is persisted in session data and correctly propagated to bridge processes on startup and restart. Closes #53 https://claude.ai/code/session_01S52AThEqY9i6QDJAxtMTJh
- Create HTTPS reverse proxy wrapper (test/e2e/server/https-wrapper.ts) that wraps the plain HTTP test server with a self-signed TLS certificate - Add start_https_test_server helper to test framework with cleanup support - Update _create_test_auth_profile to accept optional scheme parameter for HTTPS - Add insecure.test.sh with 7 test cases covering: - MCP operations fail without --insecure on self-signed cert - Connect and tools-list/tools-call work with --insecure flag - MCPC_INSECURE=1 env var works as alternative to --insecure flag https://claude.ai/code/session_01S52AThEqY9i6QDJAxtMTJh
Env vars for disabling TLS verification are not standard CLI practice and risk silently persisting insecure behavior. Only the --insecure flag remains, requiring explicit opt-in per command. https://claude.ai/code/session_01S52AThEqY9i6QDJAxtMTJh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add global
--insecureflag to skip TLS certificate verification when connecting to MCP servers with self-signed or invalid certificates. The flag is persisted in session data and correctly propagated to bridge processes on startup and restart.Closes #53
https://claude.ai/code/session_01S52AThEqY9i6QDJAxtMTJh