MCP Catalogs
Home

SharpToolsMCP vs everything

Side-by-side comparison to help you pick between these two MCP servers.

SharpToolsMCP
by kooshi
everything
by modelcontextprotocol
Stars★ 197★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsFile System
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last commit2 mo agothis month

SharpToolsMCP · Summary

A comprehensive MCP server for C# development with Roslyn-powered code analysis and modification capabilities.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

SharpToolsMCP · Use cases

  • AI-powered C# code analysis and refactoring
  • Automated code modification and generation
  • C# solution navigation and documentation generation

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"
            ]
        }
    }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.