Merged
Conversation
- Add `execute_command` and `get_terminal_output` (gated by `enableUnsafeTools`). - Add debug session tools: `list_debug_sessions`, `start_debug_session`, `stop_debug_session`, `restart_debug_session`. - Add editor/workspace helpers: `focus_editor`, `text_editor`, `list_directory`, `preview_url`. - Add VS Code command tools: `list_vscode_commands`, `execute_vscode_command` (gated). - Add `codingwithcalvin.mcp.enableUnsafeTools` setting and tests.
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.
This pull request introduces major improvements to the VS Code MCP extension, focusing on enhanced remote access support, security, tool configuration, and usability. The most significant changes include new settings and commands for secure remote connections (especially for ngrok/ChatGPT Web integration), expanded tool catalog and configuration options, and improved error handling and diagnostics.
Remote Access & Security Enhancements
allowRemoteConnectionsandauthTokenfor secure bearer token authentication. The README now documents a full workflow for exposing the MCP server to ChatGPT Web using ngrok with Google OAuth and bearer token injection. [1] [2] [3] [4] [5]Tool Catalog Expansion & Configuration
defaultTools.enabled,vscodeTools.enabled, and their respective allowlists), with new commands for tool inspection and configuration. [1] [2] [3] [4] [5]Usability Improvements
MCP Server: Connection Infocommand to quickly view/copy local and ngrok URLs, detect ngrok tunnels, and open the ngrok dashboard. [1] [2] [3]Debugging & Launch Configuration
API & Performance Options
useFindTextInFilessetting to allow fast workspace text search using VS Code’s API, with fallback to slower search if disabled/unavailable. [1] [2]autoSaveAfterToolEditssetting to automatically save files after edit-applying tools. [1] [2]These changes collectively make the extension much more robust for both local and remote use, provide fine-grained tool exposure control, and improve developer experience and security.