SharpToolsMCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
SharpToolsMCP by kooshi | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 197 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsFile System | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 2 mo ago | this month |
SharpToolsMCP · Summary
A comprehensive MCP server for C# development with Roslyn-powered code analysis and modification capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
SharpToolsMCP · Use cases
- AI-powered C# code analysis and refactoring
- Automated code modification and generation
- C# solution navigation and documentation generation
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
SharpToolsMCP · Install
Installation
Prerequisites
- .NET 8+ SDK
- .NET SDK of the target solution
Building
dotnet build SharpTools.slnSSE Server (HTTP)
cd SharpTools.SseServer
dotnet run -- --port 3001 --log-file ./logs/mcp-sse-server.log --log-level DebugStdio Server Configuration (VSCode Copilot)
"mcp": {
"servers": {
"SharpTools": {
"type": "stdio",
"command": "/path/to/repo/SharpToolsMCP/SharpTools.StdioServer/bin/Debug/net8.0/SharpTools.StdioServer",
"args": [
"--log-directory",
"/var/log/sharptools/",
"--log-level",
"Debug"
]
}
}
}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.