MCP Catalogs
Home

Manifold vs everything

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

Manifold
by Garume
everything
by modelcontextprotocol
Stars★ 45★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last commit2 mo agothis month

Manifold · Summary

Manifold is a .NET framework for defining operations once and exposing them via both CLI and MCP surfaces with high performance.

everything · Summary

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

Manifold · Use cases

  • Building CLI tools with MCP capabilities in .NET applications
  • Creating dual-purpose command line and AI assistant tools
  • Generating high-performance MCP servers from existing .NET business logic

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

Manifold · Install

Install the Manifold NuGet packages based on your needs:

# For CLI applications
<ItemGroup>
  <PackageReference Include="Manifold" Version="1.0.0" />
  <PackageReference Include="Manifold.Generators" Version="1.0.0" PrivateAssets="all" />
  <PackageReference Include="Manifold.Cli" Version="1.0.0" />
</ItemGroup>

# For MCP hosts
<ItemGroup>
  <PackageReference Include="Manifold" Version="1.0.0" />
  <PackageReference Include="Manifold.Generators" Version="1.0.0" PrivateAssets="all" />
  <PackageReference Include="Manifold.Mcp" Version="1.0.0" />
</ItemGroup>

For Claude Desktop integration, add the MCP server using:

{
  "mcpServers": {
    "manifold": {
      "command": "dotnet",
      "args": ["run", "--project", "path/to/your/project.csproj"],
      "env": {
        "DOTNET_ENVIRONMENT": "Development"
      }
    }
  }
}

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.