everything vs CereBro
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | CereBro by rob1997 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30天用量 | — | — |
| 综合分 | 77 | 34 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具其它 |
| 实现语言 | TypeScript | C# |
| 最近提交 | 本月 | 14 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
CereBro · 概述
.NET 平台的 MCP 客户端-服务器实现,目前支持 OpenAI,计划支持更多模型。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
CereBro · 使用场景
- 将 AI 聊天功能集成到 .NET 应用程序中
- 为 Unity 游戏构建自定义 AI 工具
- 在 .NET 环境中创建模型无关的 AI 代理
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-everythingCereBro · 安装
安装
- 通过 NuGet 安装 CereBro:
dotnet add package Rob1997.CereBro
dotnet add package Rob1997.CereBro.Open-AI- 创建包含 MCP 服务器配置的
servers.json文件:
[
{
"Id": "everything-server",
"Name": "Everything",
"TransportType": "stdio",
"TransportOptions": {
"command": "npx",
"arguments": "-y @modelcontextprotocol/server-everything"
}
}
]- 将您的 OpenAI API 密钥添加到环境变量中
- 在 Program.cs 中配置:
var builder = Host.CreateApplicationBuilder(args);
builder.Services.UseOpenAI(Environment.GetEnvironmentVariable("OPEN_AI_API_KEY"), "gpt-4o-mini");
IHost cereBro = builder.BuildCereBro(new CereBroConfig{ ServersFilePath = "./servers.json" });
await cereBro.RunAsync();