什么是 com.gitscrum/mcp?
面向 GitScrum 的 MCP server,可通过 AI 管理任务、sprint、时间追踪和客户工作流。
README
⚡ Hosted (Recommended)
Zero install. Works everywhere.
https://mcp.gitscrum.com/sse
SSE-based server hosted on AWS. Just add URL + token to your AI client.
Best for: Claude Desktop, Cursor, Windsurf, any SSE-compatible client.
</td> <td width="50%">📦 Local (npm)
Self-hosted via npx.
npx -y @gitscrum-studio/mcp-server
Runs locally via stdio transport. Requires Node.js 18+.
Best for: VS Code, GitHub Copilot, offline environments.
</td> </tr> </table>Overview
GitScrum Studio MCP Server connects AI assistants to your GitScrum workspace via the Model Context Protocol. It gives Claude, GitHub Copilot, Cursor, and any MCP-compatible client full operational access to your project management stack — tasks, sprints, time tracking, user stories, epics, kanban workflows, team discussions, wiki, notes, client CRM, invoicing, proposals, budget tracking, analytics dashboards, standup reports, and activity feeds.
Everything your team does in the GitScrum web app, your AI assistant can now do through conversation.
You: "What's on my plate today?"
Assistant: Fetches your tasks due today across all projects.
You: "Create a sprint for next week with the top 5 backlog items"
Assistant: Creates the sprint, assigns tasks, and sets the timeline.
You: "Show me which projects are over budget"
Assistant: Returns burn-down data and flags at-risk projects.
You: "Send the Q1 proposal to Acme Corp"
Assistant: Creates the proposal, attaches the client, and sends it.
You: "What did the team ship this week?"
Assistant: Generates a standup digest with completed work and blockers.
29 tools. 160+ operations. Zero context switching.
Quick start
Install
npx -y @gitscrum-studio/mcp-server
Configure your client
<details> <summary><strong>Claude Desktop</strong></summary>Edit the configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"gitscrum": {
"command": "npx",
"args": ["-y", "@gitscrum-studio/mcp-server"]
}
}
}
Add to .vscode/mcp.json or your MCP settings:
{
"servers": {
"gitscrum": {
"command": "npx",
"args": ["-y", "@gitscrum-studio/mcp-server"]
}
}
}
Authenticate
Tell your AI assistant: "Login to GitScrum"
The server initiates an OAuth 2.0 Device Authorization Grant flow. You authorize in the browser — credentials are never shared with the MCP server.
Tools
Each tool uses a consolidated action parameter, reducing LLM context tokens by ~80% compared to individual tool definitions.
Core
| Tool | Actions | Docs |
|---|---|---|
task | my today get create update complete subtasks filter by_code duplicate move notifications | tasks |
sprint | list all get kpis create update stats reports progress metrics | sprints |
workspace | list get | projects |
project | list get stats tasks workflows types efforts labels members | projects |
time | active start stop logs analytics team reports productivity timeline | time-tracking |
Planning
| Tool | Actions | Docs |
|---|---|---|
user_story | list get create update all | user-stories |
epic | list create update | epics |
label | list create update attach detach toggle | labels |
task_type | list create update assign | task-types |
workflow | create update | workflows |
Collaboration
| Tool | Actions | Docs |
|---|---|---|
discussion | all channels channel messages send search unread mark_read create_channel update_channel | discussions |
comment | list add update | comments |
wiki | list get create update search | wiki |
note | list get create update share revisions | notevault |
note_folder | list create update move | notevault |
search | — | search |
ClientFlow CRM
| Tool | Actions | Docs |
|---|---|---|
client | list get create update contacts interactions add_interaction | clientflow |
invoice | list get stats create update issue send mark_paid | clientflow |
proposal | list get stats create update send approve reject convert | clientflow |
clientflow_dashboard | 8 reports | clientflow |
clientflow_cross_workspace | 4 reports | clientflow |
Insights <sup>PRO</sup>
| Tool | Actions | Docs |
|---|---|---|
standup | summary completed blockers team stuck digest contributors | standup |
analytics | 10 reports | analytics |
activity | feed user_feed notifications activities task_workflow | activity |
budget | projects_at_risk overview consumption burn_down alerts events | budget |
Authentication
| Tool | Description | Docs |
|---|---|---|
auth_login | Initiate device code flow | auth |
auth_complete | Complete authorization | auth |
auth_status | Check session status | auth |
auth_logout | Clear stored credentials | auth |
Full reference: docs/TOOLS.md
Security
The server is designed around the principle of least privilege.
| Layer | Protection |
|---|---|
| Operations | Only CREATE, READ, UPDATE. DELETE is blocked at MCP and API layers. |
| Authentication | OAuth 2.0 Device Grant — credentials never touch the server. |
| Token storage | Local filesystem with restricted permissions. |
| Rate limiting | Automatic lockout after failed auth attempts. |
Destructive operations must be performed in the GitScrum Studio.
Full details: docs/SECURITY.md
Found a vulnerability? Report privately to security@gitscrum.com.
Documentation
| Hosted Server | SSE setup for Claude, Cursor, Windsurf, and more |
| Usage Guide | Practical examples and common workflows |
| Tools Reference | All 29 tools with parameters and response shapes |
| Per-Tool Guides | Deep-dive into each tool module |
| Security | Security model, token handling, threat mitigations |
| Development | Local setup, architecture, testing, contribution |
| Changelog | Version history and migration notes |
Development
git clone https://github.com/gitscrum-core/mcp-server.git
cd mcp-server
npm install
npm run build
npm test # 378 tests across 22 suites
Inspect locally with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
| Requirement | Version |
|---|---|
| Node.js | >= 18.0.0 |
| npm | >= 8.0.0 |
Full guide: docs/DEVELOPMENT.md
Contributing
See CONTRIBUTING.md for guidelines.
git checkout -b feature/my-feature
# make changes, add tests
npm test
git commit -m "feat: describe your change"
License
MIT — see LICENSE.
<p align="center"> <a href="https://gitscrum.com">Website</a> · <a href="https://docs.gitscrum.com/en/mcp">Docs</a> · <a href="https://github.com/gitscrum-core/mcp-server/issues">Issues</a> · <a href="CHANGELOG.md">Changelog</a> </p> <p align="center"> Built by <a href="https://gitscrum.com/en">GitScrum</a> </p>
常见问题
com.gitscrum/mcp 是什么?
面向 GitScrum 的 MCP server,可通过 AI 管理任务、sprint、时间追踪和客户工作流。
相关 Skills
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
MCP服务构建器
by alirezarezvani
从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。
✎ 帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。