filesystem vs vscode-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | vscode-mcp by tjx666 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
vscode-mcp · Summary
VSCode MCP server that provides real-time LSP diagnostics, type information, and code navigation for AI coding agents without waiting for slow tsc/eslint checks.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
vscode-mcp · Use cases
- AI coding agents getting real-time diagnostics instead of running slow type checkers
- Enhanced code completion and navigation in AI IDEs like Cursor and Claude Code
- Safe refactoring operations with automatic import updates across files
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
vscode-mcp · Install
Installation
- Install the VSCode MCP Bridge extension using ID:
YuTengjing.vscode-mcp-bridge
- Install the MCP server in your environment:
**Claude Code**:
claude mcp add vscode-mcp -- npx -y @vscode-mcp/vscode-mcp-server@latest**Cursor**: Click the install button or add manually via Settings -> Tools & Integrations -> New MCP Server with command: npx @vscode-mcp/vscode-mcp-server@latest
**Gemini CLI**:
{
"mcpServers": {
"vscode-mcp": {
"command": "npx",
"args": ["-y", "@vscode-mcp/vscode-mcp-server@latest"]
}
}
}