MCP Catalogs
首页

MCPify vs time

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

MCPify
by abdebek
time
by modelcontextprotocol
Stars★ 4★ 85,748
30天用量
综合分3877
官方
分类
开发者工具AI / LLM 工具网页抓取
效率工具开发者工具沟通协作
实现语言C#TypeScript
最近提交3 个月前本月

MCPify · 概述

MCPify 是一个 .NET 库,可将 OpenAPI/Swagger 规范转换为 MCP 工具供 AI 助手使用。

time · 概述

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

MCPify · 使用场景

  • 将内部 .NET API 作为工具暴露给 Claude Desktop 集成
  • 将具有 OpenAPI 规范的公共 REST API 转换为 MCP 可访问工具
  • 创建具有自动令牌管理的 OAuth 保护 MCP 工具

time · 使用场景

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

MCPify · 安装

安装

  1. 在您的 ASP.NET Core 项目中安装软件包:
dotnet add package MCPify
  1. 在您的 Program.cs 中配置:
builder.Services.AddMcpify(options => {
    options.Transport = McpTransportType.Stdio;
    options.LocalEndpoints = new LocalEndpointsOptions {
        Enabled = true,
        ToolPrefix = "myapp_"
    };
});
  1. 对于 Claude Desktop,添加到您的配置文件:
{
  "mcpServers": {
    "my-app": {
      "command": "dotnet",
      "args": [
        "run",
        "--project",
        "/absolute/path/to/YourProject.csproj",
        "--",
        "--Mcpify:Transport=Stdio"
      ]
    }
  }
}

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"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。