vs-claude
If you are the rightful owner of vs-claude and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Model Context Protocol (MCP) server facilitates communication between AI assistants and applications like Visual Studio Code, enabling seamless integration and interaction.
VS Claude
A VS Code extension with an integrated MCP server that allows MCP clients like Claude to interact with Visual Studio Code.
Key Features
- Smart File Operations - Open files, diffs, and Git comparisons in VS Code
- Batch Operations - Open multiple files at once for efficient workflow
- Git Integration - View git diffs between different versions of files
- Line Highlighting - Jump to specific lines or highlight line ranges
Overview
VS Claude provides a simple tool for AI assistants to open files and diffs in VS Code through the MCP (Model Context Protocol) interface.
Navigation Tool
open - Open files, diffs, and git comparisons in VS Code
- Open files with optional line highlighting
- Show diffs between two files
- View git diffs (working changes, staged, commits)
- Open multiple files in a single operation
- See for the full tool description
Installation
Option 1: From VS Code Extension Marketplace
- Open VS Code
- Go to Extensions (Cmd+Shift+X / Ctrl+Shift+X)
- Search for "VS Claude"
- Click Install
Option 2: Build from Source
- Build the VSIX package:
git clone https://github.com/your-username/vs-claude.git
cd vs-claude
npm install
npm run build
npm install -g @vscode/vsce
vsce package
- Install in VS Code:
- Press
Cmd+Shift+P
(Mac) orCtrl+Shift+P
(Windows/Linux) - Run "Extensions: Install from VSIX..."
- Select the generated
.vsix
file
- Press
Set up Claude Integration
After installation, you will be prompted to install the MCP server for Claude. Click "Install" to proceed.
If you need to install it later or manually:
- Open the Command Palette (
Cmd+Shift+P
on Mac orCtrl+Shift+P
on Windows/Linux) - Run "VS Claude: Install MCP"
- Restart Claude to activate
- Instruct Claude to use the vs-claude tools if appropriate for the task
Set up Integration with Other AI Assistants
If your AI assistant supports MCP servers:
- Open the Command Palette (
Cmd+Shift+P
on Mac orCtrl+Shift+P
on Windows/Linux) - Run "VS Claude: Install MCP"
- Click "Manual Setup"
- Follow the MCP server configuration instructions for your AI assistant
Architecture
VS Claude consists of two components:
VS Code Extension (TypeScript)
- Installs the MCP server with Claude CLI
- Implements the file opening logic using VS Code APIs
- Handles file-based IPC for communication with MCP clients
Commands:
VS Claude: Install MCP
- Install the MCP server with ClaudeVS Claude: Uninstall MCP
- Remove the MCP server from Claude
MCP Server (Go)
- Simple proxy that forwards tool calls from MCP clients to VS Code
- Returns responses from VS Code back to the MCP client
Communication Flow
MCP Client (Claude) ā MCP Server ā File System ā VS Code Extension
- MCP Server writes commands to
~/.vs-claude/{windowId}.in
- VS Code Extension writes responses to
~/.vs-claude/{windowId}.out
- Each VS Code window has a unique ID with metadata in
~/.vs-claude/{windowId}.meta.json
- When multiple windows are open, the MCP server returns an error listing available windows
Development
Prerequisites
- Node.js 16+
- Go 1.21+
- VS Code
Scripts
npm run build # Build TypeScript and Go binaries
npm run build:debug # Build with Go debug symbols (no cross-compilation)
npm run check # Format with Biome, lint, and type check all code
npm run test # Run tests
npm run clean # Remove build artifacts
Build System
- Extension bundling with esbuild
- Cross-platform Go binaries for macOS (Intel/ARM), Linux, and Windows
Project Structure
vs-claude/
āāā src/ # TypeScript extension source
ā āāā extension.ts # Main entry point
ā āāā tools/ # Tool implementations
ā ā āāā open-tool.ts # File opening logic
ā ā āāā types.ts # TypeScript types
ā āāā command-handler.ts # Command dispatcher
ā āāā window-manager.ts # Window IPC management
ā āāā logger.ts # Logging system
ā āāā setup.ts # MCP installation logic
āāā mcp/ # Go MCP server source
ā āāā main.go # MCP server implementation
āāā scripts/ # Build scripts
ā āāā build-extension.js # Extension bundling
ā āāā build-mcp-server.sh # Cross-platform Go compilation
āāā test/ # Test suite
ā āāā suite/ # Test implementations
ā āāā test-workspace/ # Sample project for testing
āāā build/ # Build outputs (generated)
ā āāā mcp/ # Cross-platform Go binaries
ā āāā extension/ # TypeScript compilation output
āāā CLAUDE.md # Project-specific instructions
Testing
The project includes comprehensive tests that:
- Launch VS Code with the extension
- Test file opening functionality
- Verify the MCP integration
Run tests with:
npm test
Development
Press F5 to run the extension in development mode.
Troubleshooting
Tool Not Available
- Ensure VS Code is running with the extension installed
- Check that the MCP server is configured:
claude mcp list
- Restart Claude after installation
Multiple VS Code Windows
When multiple windows are open, the MCP server returns an error listing available windows. The MCP client must then specify a windowId with each request:
mcp_vs-claude_open({
args: {"type": "file", "path": "/path/to/file.ts"},
windowId: "window-123"
})
Contributing
Contributions are welcome! Please read our contributing guidelines and submit pull requests to our repository.
Publishing to VS Code extension marketplace
- Go to https://dev.azure.com/badlogicgames/badlogicgames
- Sign in with
- Click the non-descriptive icon next to MZ in the top right
- Click on "Personal access tokens"
- Generate a new token, cause the old one likely expired. Select "All accessible organizations" for Organization, Scope Full access
vsce publish
, enter the stupid token- Check https://marketplace.visualstudio.com/manage/publishers/mariozechner?noPrompt=true for status of publication
License
[License information here]