{
  "markdown": "<p align=\"center\">\n  <img src=\"https://site-assets.gitscrum.com/vscode/gitscrum-white.png\" alt=\"GitScrum\" width=\"160\"/>\n</p>\n\n<h1 align=\"center\">GitScrum MCP Server: Your AI Agent as a Project Manager 🚀</h1>\n<p align=\"center\">\n  <a href=\"https://www.npmjs.com/package/@gitscrum-studio/mcp-server\"><img src=\"https://img.shields.io/npm/v/@gitscrum-studio/mcp-server?style=flat-square&color=000\" alt=\"npm version\"></a>\n  <a href=\"https://opensource.org/licenses/MIT\"><img src=\"https://img.shields.io/badge/license-MIT-000?style=flat-square\" alt=\"MIT License\"></a>\n  <a href=\"https://github.com/gitscrum-core/mcp-server/actions\"><img src=\"https://img.shields.io/badge/tests-378_passing-000?style=flat-square\" alt=\"Tests\"></a>\n</p>\n\n<p align=\"center\">\n  Turn your AI Agent into a full-scale Project Manager.<br/>\n The Official Model Context Protocol (MCP) server for GitScrum provides AI assistants (Claude, Cursor, Windsurf, Copilot) with deep context and operational access to your entire project stack.\n\n</p>\n\n<div align=\"center\">\n    <img src=\"https://github.com/user-attachments/assets/adbcac95-f1cb-4ad3-852c-24120bc13de6\" alt=\"GitScrum MCP Server\">\n</div>\n\n\n<br/>\n\n<table>\n<tr>\n<td width=\"50%\">\n\n### ⚡ Hosted (Recommended)\n\n**Zero install. Works everywhere.**\n\n```\nhttps://mcp.gitscrum.com/sse\n```\n\nSSE-based server hosted on AWS. Just add URL + token to your AI client.\n\n**Best for:** Claude Desktop, Cursor, Windsurf, any SSE-compatible client.\n\n[→ Setup Guide](docs/HOSTED.md)\n\n</td>\n<td width=\"50%\">\n\n### 📦 Local (npm)\n\n**Self-hosted via npx.**\n\n```bash\nnpx -y @gitscrum-studio/mcp-server\n```\n\nRuns locally via stdio transport. Requires Node.js 18+.\n\n**Best for:** VS Code, GitHub Copilot, offline environments.\n\n[→ Local Setup](#quick-start)\n\n</td>\n</tr>\n</table>\n\n---\n\n## Overview\n\nGitScrum Studio MCP Server connects AI assistants to your [GitScrum](https://gitscrum.com) workspace via the [Model Context Protocol](https://modelcontextprotocol.io). 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.\n\nEverything your team does in the GitScrum web app, your AI assistant can now do through conversation.\n\n```\nYou:    \"What's on my plate today?\"\nAssistant: Fetches your tasks due today across all projects.\n\nYou:    \"Create a sprint for next week with the top 5 backlog items\"\nAssistant: Creates the sprint, assigns tasks, and sets the timeline.\n\nYou:    \"Show me which projects are over budget\"\nAssistant: Returns burn-down data and flags at-risk projects.\n\nYou:    \"Send the Q1 proposal to Acme Corp\"\nAssistant: Creates the proposal, attaches the client, and sends it.\n\nYou:    \"What did the team ship this week?\"\nAssistant: Generates a standup digest with completed work and blockers.\n```\n\n**29 tools. 160+ operations. Zero context switching.**\n\n---\n\n## Quick start\n\n### Install\n\n```bash\nnpx -y @gitscrum-studio/mcp-server\n```\n\n### Configure your client\n\n<details>\n<summary><strong>Claude Desktop</strong></summary>\n\nEdit the configuration file:\n\n- **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`\n- **Windows:** `%APPDATA%\\Claude\\claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"gitscrum\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@gitscrum-studio/mcp-server\"]\n    }\n  }\n}\n```\n</details>\n\n<details>\n<summary><strong>VS Code / Cursor</strong></summary>\n\nAdd to `.vscode/mcp.json` or your MCP settings:\n\n```json\n{\n  \"servers\": {\n    \"gitscrum\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@gitscrum-studio/mcp-server\"]\n    }\n  }\n}\n```\n</details>\n\n### Authenticate\n\nTell your AI assistant: **\"Login to GitScrum\"**\n\nThe server initiates an [OAuth 2.0 Device Authorization Grant](https://datatracker.ietf.org/doc/html/rfc8628) flow. You authorize in the browser — credentials are never shared with the MCP server.\n\n---\n\n## Tools\n\nEach tool uses a consolidated `action` parameter, reducing LLM context tokens by ~80% compared to individual tool definitions.\n\n### Core\n\n| Tool | Actions | Docs |\n|:-----|:--------|:-----|\n| `task` | `my` `today` `get` `create` `update` `complete` `subtasks` `filter` `by_code` `duplicate` `move` `notifications` | [tasks](docs/tools/tasks.md) |\n| `sprint` | `list` `all` `get` `kpis` `create` `update` `stats` `reports` `progress` `metrics` | [sprints](docs/tools/sprints.md) |\n| `workspace` | `list` `get` | [projects](docs/tools/projects.md) |\n| `project` | `list` `get` `stats` `tasks` `workflows` `types` `efforts` `labels` `members` | [projects](docs/tools/projects.md) |\n| `time` | `active` `start` `stop` `logs` `analytics` `team` `reports` `productivity` `timeline` | [time-tracking](docs/tools/time-tracking.md) |\n\n### Planning\n\n| Tool | Actions | Docs |\n|:-----|:--------|:-----|\n| `user_story` | `list` `get` `create` `update` `all` | [user-stories](docs/tools/user-stories.md) |\n| `epic` | `list` `create` `update` | [epics](docs/tools/epics.md) |\n| `label` | `list` `create` `update` `attach` `detach` `toggle` | [labels](docs/tools/labels.md) |\n| `task_type` | `list` `create` `update` `assign` | [task-types](docs/tools/task-types.md) |\n| `workflow` | `create` `update` | [workflows](docs/tools/workflows.md) |\n\n### Collaboration\n\n| Tool | Actions | Docs |\n|:-----|:--------|:-----|\n| `discussion` | `all` `channels` `channel` `messages` `send` `search` `unread` `mark_read` `create_channel` `update_channel` | [discussions](docs/tools/discussions.md) |\n| `comment` | `list` `add` `update` | [comments](docs/tools/comments.md) |\n| `wiki` | `list` `get` `create` `update` `search` | [wiki](docs/tools/wiki.md) |\n| `note` | `list` `get` `create` `update` `share` `revisions` | [notevault](docs/tools/notevault.md) |\n| `note_folder` | `list` `create` `update` `move` | [notevault](docs/tools/notevault.md) |\n| `search` | — | [search](docs/tools/search.md) |\n\n### ClientFlow CRM\n\n| Tool | Actions | Docs |\n|:-----|:--------|:-----|\n| `client` | `list` `get` `create` `update` `contacts` `interactions` `add_interaction` | [clientflow](docs/tools/clientflow.md) |\n| `invoice` | `list` `get` `stats` `create` `update` `issue` `send` `mark_paid` | [clientflow](docs/tools/clientflow.md) |\n| `proposal` | `list` `get` `stats` `create` `update` `send` `approve` `reject` `convert` | [clientflow](docs/tools/clientflow.md) |\n| `clientflow_dashboard` | 8 reports | [clientflow](docs/tools/clientflow.md) |\n| `clientflow_cross_workspace` | 4 reports | [clientflow](docs/tools/clientflow.md) |\n\n### Insights <sup>PRO</sup>\n\n| Tool | Actions | Docs |\n|:-----|:--------|:-----|\n| `standup` | `summary` `completed` `blockers` `team` `stuck` `digest` `contributors` | [standup](docs/tools/standup.md) |\n| `analytics` | 10 reports | [analytics](docs/tools/analytics.md) |\n| `activity` | `feed` `user_feed` `notifications` `activities` `task_workflow` | [activity](docs/tools/activity.md) |\n| `budget` | `projects_at_risk` `overview` `consumption` `burn_down` `alerts` `events` | [budget](docs/tools/budget.md) |\n\n### Authentication\n\n| Tool | Description | Docs |\n|:-----|:------------|:-----|\n| `auth_login` | Initiate device code flow | [auth](docs/tools/auth.md) |\n| `auth_complete` | Complete authorization | [auth](docs/tools/auth.md) |\n| `auth_status` | Check session status | [auth](docs/tools/auth.md) |\n| `auth_logout` | Clear stored credentials | [auth](docs/tools/auth.md) |\n\nFull reference: [docs/TOOLS.md](docs/TOOLS.md)\n\n---\n\n## Security\n\nThe server is designed around the **principle of least privilege**.\n\n| Layer | Protection |\n|:------|:-----------|\n| **Operations** | Only CREATE, READ, UPDATE. DELETE is blocked at MCP and API layers. |\n| **Authentication** | OAuth 2.0 Device Grant — credentials never touch the server. |\n| **Token storage** | Local filesystem with restricted permissions. |\n| **Rate limiting** | Automatic lockout after failed auth attempts. |\n\nDestructive operations must be performed in the [GitScrum Studio](https://studio.gitscrum.com).\n\nFull details: [docs/SECURITY.md](docs/SECURITY.md)\n\nFound a vulnerability? Report privately to **security@gitscrum.com**.\n\n---\n\n## Documentation\n\n| | |\n|:--|:--|\n| **[Hosted Server](docs/HOSTED.md)** | SSE setup for Claude, Cursor, Windsurf, and more |\n| **[Usage Guide](docs/USAGE.md)** | Practical examples and common workflows |\n| **[Tools Reference](docs/TOOLS.md)** | All 29 tools with parameters and response shapes |\n| **[Per-Tool Guides](docs/tools/)** | Deep-dive into each tool module |\n| **[Security](docs/SECURITY.md)** | Security model, token handling, threat mitigations |\n| **[Development](docs/DEVELOPMENT.md)** | Local setup, architecture, testing, contribution |\n| **[Changelog](CHANGELOG.md)** | Version history and migration notes |\n\n---\n\n## Development\n\n```bash\ngit clone https://github.com/gitscrum-core/mcp-server.git\ncd mcp-server\nnpm install\nnpm run build\nnpm test          # 378 tests across 22 suites\n```\n\nInspect locally with the MCP Inspector:\n\n```bash\nnpx @modelcontextprotocol/inspector node dist/index.js\n```\n\n| Requirement | Version |\n|:------------|:--------|\n| Node.js | >= 18.0.0 |\n| npm | >= 8.0.0 |\n\nFull guide: [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md)\n\n---\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n```bash\ngit checkout -b feature/my-feature\n# make changes, add tests\nnpm test\ngit commit -m \"feat: describe your change\"\n```\n\n---\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n\n---\n\n<p align=\"center\">\n  <a href=\"https://gitscrum.com\">Website</a>&nbsp;&nbsp;·&nbsp;&nbsp;<a href=\"https://docs.gitscrum.com/en/mcp\">Docs</a>&nbsp;&nbsp;·&nbsp;&nbsp;<a href=\"https://github.com/gitscrum-core/mcp-server/issues\">Issues</a>&nbsp;&nbsp;·&nbsp;&nbsp;<a href=\"CHANGELOG.md\">Changelog</a>\n</p>\n\n<p align=\"center\">\n  Built by <a href=\"https://gitscrum.com/en\">GitScrum</a>\n</p>\n",
  "bytes": 9995,
  "sha": "337dfb52091342ccab4f4e2f02febcd06ab2b7d287f450d32337dc8c205f8c0c",
  "repo_slug": "gitscrum-core/mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_com_gitscrum_mcp_f23ab4f7/readme"
}