MCP Catalogs
Home

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
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsFile System
File SystemDeveloper ToolsProductivity
LanguageC#TypeScript
Last commit2 mo agothis 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.sln

SSE Server (HTTP)

cd SharpTools.SseServer
dotnet run -- --port 3001 --log-file ./logs/mcp-sse-server.log --log-level Debug

Stdio 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.

Comparison generated from public README + GitHub signals. Last updated automatically.