Check the MCP server status in the bottom-left VSCode status bar:
(Server icon): Server is running
∅: Click to start the server
Recommended rules for AI agents:
## Code Development
- **After code editing**: Always check code using `mcp_vscode_code_checker` tool
## Tools Priority
- **Rule**: Always use ONLY `mcp_vscode_execute_command`, `mcp_vscode_get_terminal_output` instead of any other command line tool to perform tasks
## Terminal Analysis
- **CRITICAL**: MUST always read and analyze complete terminal output, not just exit code
- **Forbidden**: Never make assumptions based solely on exit codes
- **Required**: Always examine actual output text, error messages, warnings, and any other information displayed before providing response or next steps
Commands
MCP Server: Start Server
MCP Server: Stop Server
MCP Server: Toggle Active Status
Settings
mcpServer.startOnActivate (boolean, default: true) — start server on VS Code activation
mcpServer.port (number, default: 60100) — port of the MCP server
--listen-port: Starting port to listen for incoming JSON-RPC messages (default: 6011)
--disable: Disable specific tools from being displayed (e.g., --disable text_editor --disable list_directory)
--enable: Enable only specific tools (whitelist mode) - when used, only specified tools will be available (e.g., --enable execute_command --enable code_checker)
Attribution
This project is a fork of acomagu/vscode-as-mcp-server by Yuki Ito. Original copyrights and third-party notices are retained under Apache-2.0. This distribution is maintained by Ivan Mezentsev.