vs-code-mcp-server
Provides AI assistants with VS Code integration for file operations, command execution, project analysis, and development workflow automation.
README
VS Code MCP Server
A comprehensive Model Context Protocol (MCP) server designed to provide AI assistants with powerful VS Code integration capabilities, offering 29 specialized tools for file operations, command execution, project analysis, and development workflow automation.
š Features
- š File Operations: Complete file and directory management (8 tools)
- ā” Advanced File Editing: Precise line-level editing with validation (6 tools)
- š„ļø Command Execution: System command execution and process management (8 tools)
- š Project Analysis: Codebase insights and dependency discovery (3 tools)
- š VS Code Integration: Symbol search, definitions, and diagnostics (4 tools)
š¦ Installation
Prerequisites
- Node.js 18.0.0 or higher
- Claude Desktop (or any MCP-compatible client)
Setup
-
Clone the repository:
git clone <your-repo-url> cd vs-code-mcp-server -
Install dependencies:
npm install -
Build the server:
npm run build
Configuration
Add the server to your MCP client configuration. For Claude Desktop, edit the config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"vs-code-mcp-server": {
"command": "node",
"args": ["/path/to/your/vs-code-mcp-server/dist/index.js"],
"env": {}
}
}
}
Note: Replace
/path/to/your/vs-code-mcp-serverwith the actual path to your cloned repository.
š ļø Available Tools
š File Operations (8 tools)
| Tool | Description |
|---|---|
list_files_code |
List files and directories with optional recursive listing |
read_file_code |
Read file contents with encoding and line range options |
create_file_code |
Create new files with overwrite protection |
delete_file_code |
Delete files and directories with recursive options |
copy_file_code |
Copy files and directories to new locations |
move_file_code |
Move or rename files and directories |
create_directory_code |
Create directories with recursive parent creation |
search_files_code |
Search for text patterns across files with regex support |
ā” Advanced File Operations (6 tools)
| Tool | Description |
|---|---|
replace_lines_code |
Replace specific lines with content validation |
insert_lines_code |
Insert content at specific line positions |
delete_lines_code |
Delete specific line ranges from files |
append_to_file_code |
Append content to file end |
prepend_to_file_code |
Prepend content to file beginning |
find_and_replace_code |
Advanced find/replace with regex support |
š„ļø Command Execution (8 tools)
| Tool | Description |
|---|---|
execute_shell_command_code |
Execute shell commands with timeout control |
execute_streaming_command_code |
Execute commands with real-time output streaming |
kill_process_code |
Kill processes by PID or name |
list_processes_code |
List running processes with filtering |
kill_all_processes_code |
Kill multiple processes matching patterns |
check_command_code |
Check command availability on system |
get_system_info_code |
Get comprehensive system information |
run_script_code |
Execute script files with appropriate interpreters |
š Project Analysis (3 tools)
| Tool | Description |
|---|---|
analyze_project |
Analyze project structure and provide insights |
get_project_stats |
Get detailed codebase statistics |
find_dependencies |
Discover and analyze project dependencies |
š VS Code Integration (4 tools)
| Tool | Description |
|---|---|
search_symbols_code |
Search for symbols across workspace with fuzzy matching |
get_symbol_definition_code |
Get symbol definitions with type information |
get_document_symbols_code |
Get hierarchical symbol outline for files |
get_diagnostics_code |
Analyze code for errors and warnings |
š§ Development
Scripts
npm run build- Build the TypeScript sourcenpm run start- Start the MCP servernpm run dev- Build and start in development modenpm run watch- Watch for changes and rebuild automaticallynpm run test- Run the test suite
Project Structure
src/
āāā index.ts # Main server implementation
āāā tools/ # Tool definitions and handlers
ā āāā file-tools.ts # Basic file operations
ā āāā advanced-file-tools.ts # Advanced file editing
ā āāā command-tools.ts # Command execution
ā āāā project-tools.ts # Project analysis
ā āāā vscode-integration-tools.ts # VS Code features
āāā types/ # TypeScript type definitions
āāā utils/ # Utility functions
ā āāā file-utils.ts # File operation utilities
ā āāā command-utils.ts # Command execution utilities
ā āāā file-watcher.ts # File watching capabilities
ā āāā logger.ts # Logging utilities
š Security
This MCP server is designed for defensive development tasks only. It includes:
- Input validation and sanitization
- Safe file operation boundaries
- Process execution controls
- Error handling and logging
š¤ Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
š License
This project is licensed under the MIT License - see the LICENSE file for details.
š Issues & Support
If you encounter any issues or have questions:
- Check the Issues section
- Create a new issue with detailed information
- Include error logs and configuration details
š Acknowledgments
- Built with the Model Context Protocol SDK
- Designed for integration with Claude Desktop
- Supports VS Code development workflows
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.