G

Geekbot 站会桥

@geekbot-com/geekbot-mcp
0 Stars 364 次浏览 geekbot-com 更新于 2026-08-23

一座桥梁服务器,它将Anthropic的Claude AI与Geekbot的站会管理工具连接起来,使用户能够在Claude对话中访问和使用Geekbot数据。

该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (2 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

fetch_standups

Fetch standups list from Geekbot Returns: str: Properly formatted JSON string of standups list

该工具无需必填参数,直接调用即可

fetch_reports 4 个参数

Fetch reports list from Geekbot Args: standup_id: int, optional, default is None The standup id to fetch reports for user_id: int, optional, default is None The user id to fetch reports for after: str, optional, default is None The date to fetch reports after in YYYY-MM-DD format before: str, optional, default is None The date to fetch reports before in YYYY-MM-DD format Returns: str: Properly formatted JSON string of reports list

该工具无需必填参数,直接调用即可

服务介绍

Geekbot MCP

Geekbot MCP Logo

Geekbot MCP 服务器作为 Anthropic 的 Claude AI 和 Geekbot 强大的站立会议、投票和调查管理工具之间的桥梁。它提供了访问您的 Geekbot 数据以及一套工具,以便在 Claude AI 对话中无缝使用这些数据。

功能

  • 站立会议信息:获取您在 Geekbot 中的所有站立会议
  • 报告检索:带有筛选选项的站立会议报告获取
  • 成员信息:获取您在 Geekbot 中的所有团队成员

安装

下载 uv 包管理器

curl -LsSf https://astral.sh/uv/install.sh | sh

更多说明请参阅这里

git clone https://github.com/geekbot-com/geekbot-mcp.git
cd geekbot-mcp
uv tool install --editable .

配置

在使用 Geekbot MCP 之前,您需要设置您的 Geekbot API 密钥:

您可以从这里获取您的 Geekbot API 密钥。

在您的 claude_desktop_config.json 中配置 mcp 服务器

{
  "globalShortcut": "",
  "mcpServers": {
    "geekbot-mcp": {
      "command": "<path-to-your-uv-executable>",
      "args": [
        "tool",
        "run",
        "geekbot-mcp"
      ],
      "env": {
        "GB_API_KEY": "<your-geekbot-api-key>"
      }
    }
  }
}

要找到您的 uv 可执行文件路径,可以在终端中运行 which uv
有关配置的更多信息,请参阅这里

可用工具

list_standups

从您的 Geekbot 工作区检索所有站立会议列表。

响应为纯文本格式。

<Standups>
***Standup: 1 - Infrastructure Changelog***
id: 1
name: Infrastructure Changelog
channel: team-infrastructure
time: 10:00:00
timezone: user_local
questions:

- text: What changed in the infrastructure today?
  answer_type: text
  is_random: False



***Standup: 2 - Meeting Agenda (TOC Beta)***
id: 2
name: Meeting Agenda (TOC Beta)
channel: meeting-notes
time: 10:00:00
timezone: user_local
questions:

- text: What should we discuss in this meeting?
  answer_type: text
  is_random: False

</Standups>

fetch_reports

支持按以下条件筛选的站立会议报告检索:

  • standup_id
  • user_id
  • after
  • before

响应为纯文本格式。

<Reports>
***Report: 1 - 1***
id: 208367845
reporter_name: John Doe | @john_doe
reporter_id: U1234
standup_id: 1
created_at: 2025-03-27 13:52:59
content:
q: What have you done since your last report?
a: • Plan work for the next week
   • Worked on the new feature

q: What will you do today?
a: • Plan work for the next week
   • Worked on the new feature

q: How do you feel today?
a: I am fine.

list_members

从您的 Geekbot 工作区检索所有成员列表。

开发

设置开发环境

git clone https://github.com/geekbot-com/geekbot-mcp.git
cd geekbot-mcp

uv venv
source .venv/bin/activate

uv pip install -e

运行测试

pytest

贡献

欢迎贡献!请随时提交 Pull Request。

许可证

本项目采用 MIT 许可证

致谢

相关 MCP 服务