MCP Catalogs
首页

mcp-forge vs time

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

mcp-forge
by achetronic
time
by modelcontextprotocol
Stars★ 90★ 85,748
30天用量
综合分4777
官方
分类
开发者工具安全运维基建
效率工具开发者工具沟通协作
实现语言GoTypeScript
最近提交4 个月前本月

mcp-forge · 概述

Go语言编写、包含OAuth认证的生产级MCP服务器模板,附带部署示例。

time · 概述

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

mcp-forge · 使用场景

  • 构建带有 OAuth 认证的安全 MCP 服务器用于企业部署
  • 使用最简设置在 Go 中创建自定义 MCP 工具和资源
  • 使用 Helm 图表将 MCP 服务器部署到 Kubernetes

time · 使用场景

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

mcp-forge · 安装

安装

  1. 克隆仓库:
git clone https://github.com/achetronic/mcp-forge.git
cd mcp-forge
  1. 先决条件:
  • Go 1.24+
  1. 运行服务器:
make run

对于本地开发与 Claude Desktop,请按照 README 中描述使用 stdio 或 HTTP 模式。

Claude Desktop 配置(HTTP 模式)

// file: claude_desktop_config.json
{
  "mcpServers": {
    "local-proxy-remote": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8080/mcp",
        "--transport",
        "http-only",
        "--header",
        "Authorization: Bearer ${JWT}",
        "--header",
        "X-Validated-Jwt: ${JWT}"
      ],
      "env": {
        "JWT": "eyJhbGciOiJSUzI1NiIsImtpZCI6..."
      }
    }
  }
}

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 公开数据自动生成,定期更新。