GitScrum MCP Server
OfficialEnables GitHub Copilot to manage GitScrum projects, including tasks, sprints, time tracking, user stories, epics, discussions, and CRM operations.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GitScrum MCP ServerWhat's on my plate today?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
⚡ Hosted (Recommended)
Zero install. Works everywhere.
https://mcp.gitscrum.com/sseSSE-based server hosted on AWS. Just add URL + token to your AI client.
Best for: Claude Desktop, Cursor, Windsurf, any SSE-compatible client.
📦 Local (npm)
Self-hosted via npx.
npx -y @gitscrum-studio/mcp-serverRuns locally via stdio transport. Requires Node.js 18+.
Best for: VS Code, GitHub Copilot, offline environments.
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.
Related MCP server: Tonle OpenProject MCP Server
Quick start
Install
npx -y @gitscrum-studio/mcp-serverConfigure your client
Edit the configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%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 |
|
| |
|
| |
|
| |
|
| |
|
|
Planning
Tool | Actions | Docs |
|
| |
|
| |
|
| |
|
| |
|
|
Collaboration
Tool | Actions | Docs |
|
| |
|
| |
|
| |
|
| |
|
| |
| — |
ClientFlow CRM
Tool | Actions | Docs |
|
| |
|
| |
|
| |
| 8 reports | |
| 4 reports |
Insights PRO
Tool | Actions | Docs |
|
| |
| 10 reports | |
|
| |
|
|
Authentication
Tool | Description | Docs |
| Initiate device code flow | |
| Complete authorization | |
| Check session status | |
| Clear stored credentials |
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
SSE setup for Claude, Cursor, Windsurf, and more | |
Practical examples and common workflows | |
All 29 tools with parameters and response shapes | |
Deep-dive into each tool module | |
Security model, token handling, threat mitigations | |
Local setup, architecture, testing, contribution | |
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 suitesInspect locally with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.jsRequirement | 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gitscrum-core/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server