MCP Catalogs
首页

time vs CereBro

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

time
by modelcontextprotocol
CereBro
by rob1997
Stars★ 85,748★ 17
30天用量
综合分7734
官方
分类
效率工具开发者工具沟通协作
AI / LLM 工具开发者工具其它
实现语言TypeScriptC#
最近提交本月14 个月前

time · 概述

功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。

CereBro · 概述

.NET 平台的 MCP 客户端-服务器实现,目前支持 OpenAI,计划支持更多模型。

time · 使用场景

  • 协助安排跨时区的国际会议
  • 为基于位置的查询提供实时时间信息
  • 为旅行计划和行程安排提供时间转换

CereBro · 使用场景

  • 将 AI 聊天功能集成到 .NET 应用程序中
  • 为 Unity 游戏构建自定义 AI 工具
  • 在 .NET 环境中创建模型无关的 AI 代理

time · 安装

安装选项

**使用 uv(推荐):**

uvx mcp-server-time

**使用 PIP:**

pip install mcp-server-time
python -m mcp_server_time

**为 Claude Desktop 配置:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}

CereBro · 安装

安装

  1. 通过 NuGet 安装 CereBro:
dotnet add package Rob1997.CereBro
dotnet add package Rob1997.CereBro.Open-AI
  1. 创建包含 MCP 服务器配置的 servers.json 文件:
[
  {
    "Id": "everything-server",
    "Name": "Everything",
    "TransportType": "stdio",
    "TransportOptions": {
      "command": "npx",
      "arguments": "-y @modelcontextprotocol/server-everything"
    }
  }
]
  1. 将您的 OpenAI API 密钥添加到环境变量中
  1. 在 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();
对比内容由 README + GitHub 公开数据自动生成,定期更新。