敏捷项目管理 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
敏捷项目管理 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
敏捷项目管理 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/markrai/scrumboy
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"------": {
"command": "npx",
"args": ["-y", "scrumboy"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 敏捷项目管理 执行以下任务... Claude: [自动调用 敏捷项目管理 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"______": {
"command": "npx",
"args": ["-y", "scrumboy"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img width="372" src="internal/httpapi/web/githublogo.png" alt="scrumboy logo" /> <br /> <img src="https://img.shields.io/badge/version-v3.16.2-blue" alt="version" /> <a href="LICENSE"> <img src="https://img.shields.io/badge/license-AGPL--v3-orange" alt="license" /> </a> </p>
<img width="2975" height="1078" alt="image" src="internal/httpapi/web/github_preview.jpg" />
todo.assigned). For your own automations, not in-app or browser notifications. See Integrations.SCRUMBOY_ENCRYPTION_KEY is set.audit_events table; todo/member/project/link actions logged (see docs/AUDIT_TRAIL.md).docs/VOICEFLOW.md).docs/WALL.md).FAQ.md, docs/markdown.md).---
docker compose up --build
Open http://localhost:8080.
The Docker image and go run embed prebuilt assets under internal/httpapi/web/dist. If they are missing, build them:
cd internal/httpapi/web
npm install
npm run build
Then run docker compose up --build or go run ./cmd/scrumboy again from the repository root.
Runs in seconds. No setup required.
No .env file, TLS certificates, or encryption key are required to start the app.
.env files.export SCRUMBOY_ENCRYPTION_KEY=...).win_run_full.bat and win_run_anonymous.bat manage data/scrumboy.env automatically for local convenience.SCRUMBOY_ENCRYPTION_KEY, then data/scrumboy.env, then legacy root scrumboy.env.SCRUMBOY_ENCRYPTION_KEY=<base64-32-byte-key>.Scrumboy supports OpenID Connect for single sign-on with any standards-compliant provider (Keycloak, Authentik, Auth0, Entra ID, etc.). OIDC is enabled by setting all four required environment variables:
| Variable | Description |
|---|---|
SCRUMBOY_OIDC_ISSUER | Issuer URL (e.g. https://auth.example.com/realms/main) |
SCRUMBOY_OIDC_CLIENT_ID | OAuth client ID |
SCRUMBOY_OIDC_CLIENT_SECRET | Confidential client secret |
SCRUMBOY_OIDC_REDIRECT_URL | Full callback URL registered at IdP (e.g. https://scrumboy.example.com/api/auth/oidc/callback) |
Optional:
| Variable | Description |
|---|---|
SCRUMBOY_OIDC_LOCAL_AUTH_DISABLED | Set to true to disable local password login when OIDC is configured (SSO-only mode) |
Local password authentication remains available by default alongside OIDC. After successful OIDC login, the user receives a standard Scrumboy session cookie. The IdP must return a verified email (email_verified: true). HTTPS is recommended when using OIDC to ensure session cookies are Secure.
See docs/oidc.md for full setup details, constraints, and troubleshooting.
SCRUMBOY_TLS_CERT and SCRUMBOY_TLS_KEY files exist.Install the app from the browser for a standalone window and better mobile UX. Background assignment alerts use the Web Push API with VAPID keys on the server. When both keys are set, signed-in clients attempt to subscribe automatically (browser permission may be prompted). Details and subscriber contact semantics: docs/pwa.md.
Env vars and defaults are defined in internal/config/config.go. ResolveDataDir uses DATA_DIR and SQLITE_PATH as documented there. None of these are required for basic startup.
| Variable | Default (from code) |
|---|---|
BIND_ADDR | :8080 |
DATA_DIR | ./data |
SQLITE_PATH | (empty; then $DATA_DIR/app.db) |
SQLITE_BUSY_TIMEOUT_MS | 30000 |
SQLITE_JOURNAL_MODE | WAL |
SQLITE_SYNCHRONOUS | FULL |
MAX_REQUEST_BODY_BYTES | 1048576 (1 MiB) |
SCRUMBOY_MODE | full (or anonymous) |
SCRUMBOY_ENCRYPTION_KEY | (empty) - **Required for 2FA.** Base64-encoded 32-byte key. Generate with openssl rand -base64 32. Without it, 2FA setup returns 503. Back this key up with data/app.db; do not replace it casually once encrypted auth/security data exists. |
SCRUMBOY_TLS_CERT | ./cert.pem - TLS cert for HTTPS |
SCRUMBOY_TLS_KEY | ./key.pem - TLS key for HTTPS |
SCRUMBOY_INTRANET_IP | 192.168.1.250 - LAN IP to log for intranet access |
SCRUMBOY_VAPID_PUBLIC_KEY | (empty) - **Web Push.** VAPID public key (URL-safe base64). Required together with private key for PWA background assignment notifications and for post-login auto-subscribe in the SPA. |
SCRUMBOY_VAPID_PRIVATE_KEY | (empty) - VAPID private key (URL-safe base64). |
SCRUMBOY_VAPID_SUBSCRIBER | (empty) - Contact for VAPID JWT sub (not tied to IdP). Use a **plain email** (e.g. ops@example.com); the server adds mailto:. Or set a full mailto:... or https://... URL explicitly. If unset, a built-in default is used. |
SCRUMBOY_DEBUG_PUSH | (empty) - Set to 1 to log push send/prune on the server. |
docker-compose.yml overrides some of these (e.g. SQLITE_BUSY_TIMEOUT_MS=5000).
---
Scrumboy supports API access tokens for automation, integrations, and programmatic MCP access (legacy HTTP and JSON-RPC - see below). Full MCP guide for developers and agents: docs/mcp.md.
You can create a token from the API and use it to call MCP endpoints directly - no browser session or cookies required.
Create a token (requires login session):
curl -b cookies.txt -X POST http://localhost:8080/api/me/tokens \
-H "Content-Type: application/json" \
-H "X-Scrumboy: 1" \
-d '{"name":"cli"}'
Response includes a one-time token (starts with sb_).
Use it with MCP:
curl -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sb_your_token_here" \
-d '{"tool":"projects.list","input":{}}'
cmd/scrumboy: main server entrypoint. Other cmd/* are utilities (tagcheck, tagrecover, dbquery, slugfix).internal/config: env-based config.internal/version: app and export format version.internal/db: SQLite open/options (PRAGMAs from config).internal/migrate: DB migrations.internal/store: data model and persistence (projects, todos, tags, auth, backup, ordering, memberships, audit, links, sprints, workflows, etc.).internal/httpapi: HTTP server, routing, auth cookies, SPA serve, embedded web FS.internal/httpapi/web: frontend (TS, CSS, HTML); built with npm run build in internal/httpapi/web; output under web/dist and embedded by server.Invariants (e.g. canonical URL /{slug}, no UI links to /p/{id}) are enforced in code and tests; see internal/httpapi and internal/store for the authoritative behavior.
---
高质量的MCP工具,支持语音命令
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
经综合评估,敏捷项目管理 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | scrumboy |
| Topics | agileai-integrationcollaborationdockergo |
| GitHub | https://github.com/markrai/scrumboy |
| License | NOASSERTION |
| 语言 | Go |
收录时间:2026-05-26 · 更新时间:2026-05-26 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端