code-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
code-mcp by 54yyyu | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 37 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
code-mcp · Summary
Code-MCP connects Claude AI to dev environments via MCP, enabling terminal commands and file operations through the AI interface.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
code-mcp · Use cases
- Enable Claude AI to directly interact with your codebase through terminal commands and file operations
- Work with remote codebases by connecting to a Code-MCP instance running on a remote server
- Perform code analysis and editing with pattern matching and function-level operations
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
code-mcp · Install
Installation
Quick Installation
**macOS / Linux:**
curl -LsSf https://raw.githubusercontent.com/54yyyu/code-mcp/main/install.sh | sh**Windows:**
powershell -c "Invoke-WebRequest -Uri https://raw.githubusercontent.com/54yyyu/code-mcp/main/install.ps1 -OutFile install.ps1; .\install.ps1"Claude Desktop Integration
- Run the setup helper with your project path:
code-mcp-setup /path/to/your/project- Or manually edit Claude Desktop configuration (
claude_desktop_config.json):
{
"mcpServers": {
"code": {
"command": "code-mcp",
"args": [
"/path/to/your/project"
]
}
}
}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.