MCP Catalogs
首页

Manifold vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

Manifold
by Garume
everything
by modelcontextprotocol
Stars★ 45★ 85,748
30天用量
综合分4577
官方
分类
开发者工具AI / LLM 工具运维基建
开发者工具AI / LLM 工具其它
实现语言C#TypeScript
最近提交2 个月前本月

Manifold · 概述

Manifold 是一个.NET框架,允许开发者定义一次操作,然后通过CLI和MCP接口高效地提供这些功能。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

Manifold · 使用场景

  • 在.NET应用程序中构建具有MCP功能的CLI工具
  • 创建双用途的命令行和AI助手工具
  • 从现有的.NET业务逻辑生成高性能的MCP服务器

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

Manifold · 安装

根据您的需求安装Manifold NuGet包:

# 对于CLI应用程序
<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>

# 对于MCP主机
<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>

对于Claude Desktop集成,使用以下方式添加MCP服务器:

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

everything · 安装

NPX(推荐)

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

Windows 用户请使用 cmd /c

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

Docker

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

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。