{
  "markdown": "<p align=\"center\">\n  <img src=\"https://sprintra.io/icon-192x192.png\" width=\"80\" alt=\"Sprintra Logo\" />\n</p>\n\n<h1 align=\"center\">Sprintra MCP Server</h1>\n\n<p align=\"center\">\n  <strong>AI-native project management with persistent memory for coding agents</strong>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://www.npmjs.com/package/@sprintra/cli\"><img src=\"https://img.shields.io/npm/v/@sprintra/cli?color=6C63FF&label=npm\" alt=\"npm version\" /></a>\n  <a href=\"https://www.npmjs.com/package/@sprintra/cli\"><img src=\"https://img.shields.io/npm/dm/@sprintra/cli?color=6C63FF\" alt=\"npm downloads\" /></a>\n  <a href=\"https://sprintra.io\"><img src=\"https://img.shields.io/badge/website-sprintra.io-6C63FF\" alt=\"website\" /></a>\n  <a href=\"https://sprintra.io/docs\"><img src=\"https://img.shields.io/badge/docs-sprintra.io%2Fdocs-6C63FF\" alt=\"docs\" /></a>\n</p>\n\n<p align=\"center\">\n  Your AI forgets. <strong>Sprintra remembers.</strong>\n</p>\n\n---\n\n## What is Sprintra?\n\nSprintra gives your AI coding agent **persistent memory** — features, architecture decisions, sprint progress, and project context that survive session resets, token limits, and IDE switches.\n\n**The problem:** Every AI coding session starts from scratch. Your agent doesn't know what you decided last week, what sprint you're in, or what your teammate built yesterday.\n\n**The solution:** Sprintra's MCP server connects to Claude Code, Cursor, Windsurf, and any MCP-compatible tool. Your agent reads and writes project context automatically — no copy-paste, no re-explaining.\n\n## Quick Start\n\n### Option 1: Sprintra Cloud (Recommended)\n\n```bash\n# Install the CLI (42KB, zero native dependencies)\nnpm install -g @sprintra/cli\n\n# Authenticate\nsprintra login\n\n# Auto-configure your AI tool\nsprintra connect\n```\n\n### Option 2: Self-Hosted\n\n```bash\n# Scaffold a complete local project with server + dashboard\nnpx create-sprintra my-project\n\n# Start the server\ncd my-project\nnpm start\n\n# Server + dashboard at http://127.0.0.1:4000\n```\n\n## MCP Configuration\n\n### Claude Code\n\n```json\n{\n  \"mcpServers\": {\n    \"sprintra\": {\n      \"command\": \"npx\",\n      \"args\": [\"@sprintra/cli\", \"mcp\"]\n    }\n  }\n}\n```\n\nOr run: `sprintra connect --tool claude-code`\n\n### Cursor\n\nAdd to `.cursor/mcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"sprintra\": {\n      \"command\": \"npx\",\n      \"args\": [\"@sprintra/cli\", \"mcp\"]\n    }\n  }\n}\n```\n\nOr run: `sprintra connect --tool cursor`\n\n### Claude Desktop\n\nAdd to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS):\n\n```json\n{\n  \"mcpServers\": {\n    \"sprintra\": {\n      \"command\": \"npx\",\n      \"args\": [\"@sprintra/cli\", \"mcp\"]\n    }\n  }\n}\n```\n\n### Windsurf\n\nRun: `sprintra connect --tool windsurf`\n\n### HTTP Transport (Remote)\n\nFor remote MCP connections (Claude.ai, mobile):\n\n```\nURL: https://api.sprintra.io/api/mcp\nAuth: Bearer <your-token>\nTransport: HTTP + SSE\n```\n\n## 17 MCP Tools\n\nSprintra uses a consolidated tool pattern (inspired by [GitHub's MCP server](https://github.com/github/github-mcp-server)). Each tool accepts a `method` parameter to select the operation.\n\n### Project Management\n\n| Tool | Methods | Description |\n|------|---------|-------------|\n| `projects` | list, create, update, resolve, get_context | Manage projects with tech stack, status, and full context snapshots |\n| `features` | list, get_bundle, create, update, save_context, get_context | Epic-level work items with acceptance criteria and AI guidance |\n| `stories` | list, create, update, batch_update | Tasks under features — story, task, bug, chore types |\n| `sprints` | list, get_current, create, update, assign | Time-boxed iterations with progress tracking |\n| `releases` | list, create, update, generate_notes | Release milestones with auto-generated release notes |\n\n### Knowledge & Decisions\n\n| Tool | Methods | Description |\n|------|---------|-------------|\n| `decisions` | list, add, supersede, get_conflicts, resolve_conflict | Architecture Decision Records (ADRs) with AI conflict detection |\n| `documents` | list, get, create, update, get_versions, restore_version, add_link, get_graph | Knowledge base with versioning, templates, and cross-references |\n| `notes` | list, add | Quick capture — ideas, research findings, meeting notes |\n| `sessions` | list, start, log_message, complete | Brainstorming sessions with AI personas |\n\n### Tracking & Git\n\n| Tool | Methods | Description |\n|------|---------|-------------|\n| `criteria` | add, remove, update_status, verify | Acceptance criteria management and verification |\n| `git` | sync, link, unlink, get_status, get_feature_stats | Git commit tracking with AI authorship detection |\n| `dependencies` | add, remove, get_graph | Feature dependency tracking with cycle detection |\n| `work_sessions` | list, start, end, get_active, list_activity, list_traces, delta | Coding session tracking with context handoff |\n| `comments` | list, create, update, delete | Threaded comments on any entity |\n| `custom_fields` | manage, set, get | Custom metadata fields |\n\n### AI Intelligence\n\n| Tool | Methods | Description |\n|------|---------|-------------|\n| `ai` | get_next_work, report_progress, get_guidance, generate_briefing | AI-powered recommendations, progress tracking, and context recovery |\n| `pull_requests` | list, get_story_prs | GitHub PR tracking and auto-linking |\n\n## Example Prompts\n\nOnce connected, try these in Claude Code or Cursor:\n\n```\n\"Create a Sprintra project for this repo\"\n\n\"Capture a feature: user authentication with OAuth and email/password\"\n\n\"What should I work on next?\"\n\n\"Record a decision: we chose PostgreSQL over MongoDB for relational order data\"\n\n\"Give me a standup report\"\n\n\"What changed since my last session?\"\n```\n\n## 8 AI Skills (Slash Commands)\n\nInstall workflow skills for guided project management:\n\n```bash\nsprintra skills install --all\n```\n\n| Skill | Trigger | Description |\n|-------|---------|-------------|\n| Capture Feature | `/capture [idea]` | Break down an idea into features, stories, and criteria |\n| Record Decision | `/decide [topic]` | Create an Architecture Decision Record |\n| Standup Report | `/standup` | Auto-generate standup from recent work |\n| Wrap Session | `/wrap` | Save context for seamless session resume |\n| Sprint Review | `/sprint-review` | Review sprint progress with metrics |\n| Brainstorm | `/brainstorm [topic]` | AI-powered brainstorming with personas |\n| Implement Feature | `/implement [id]` | Start implementation with full context loaded |\n| Sprint Planning | `/sprint-plan` | Plan sprints with AI recommendations |\n\n## Dashboard\n\nSprintra includes a full web dashboard with 20+ views:\n\n- **Kanban Board** — drag-and-drop story management\n- **Sprint Tracker** — progress bars, velocity charts, burndown\n- **Roadmap** — phase timeline with feature grouping\n- **Knowledge Base** — Confluence-style docs with versioning\n- **Decisions** — ADR log with conflict detection\n- **Reports** — burndown, velocity, DORA metrics\n- **Activity Feed** — real-time project activity\n\n**Cloud:** [app.sprintra.io](https://app.sprintra.io)\n**Self-hosted:** `http://127.0.0.1:4000` after `npm start`\n\n## Pricing\n\n| Plan | Price | Includes |\n|------|-------|---------|\n| **Solo Pilot** | Free forever | 2 projects, unlimited stories, all MCP tools, all skills |\n| **Team** | $5/seat/month | 10 projects, AI features, team collaboration, priority support |\n| **Enterprise** | Custom | On-premise, dedicated infra, custom SLA |\n\n## Links\n\n- **Website:** [sprintra.io](https://sprintra.io)\n- **Documentation:** [sprintra.io/docs](https://sprintra.io/docs)\n- **MCP Tools Reference:** [sprintra.io/docs/mcp-tools](https://sprintra.io/docs/mcp-tools)\n- **Skills Guide:** [sprintra.io/docs/skills](https://sprintra.io/docs/skills)\n- **CLI Reference:** [sprintra.io/docs/cli](https://sprintra.io/docs/cli)\n- **npm:** [@sprintra/cli](https://www.npmjs.com/package/@sprintra/cli)\n- **Blog:** [sprintra.io/blog](https://sprintra.io/blog)\n\n## License\n\nThe Sprintra MCP server documentation in this repository is MIT licensed.\nThe Sprintra server, dashboard, and CLI are proprietary software — see [sprintra.io/pricing](https://sprintra.io/pricing) for plans.\n",
  "bytes": 8135,
  "sha": "1b2bc5157d67b941aea4738d3a2a99e0221235a5046a4c26facbe2b1f734d5d8",
  "repo_slug": "sprintra-io/sprintra-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_sprintra_io_sprintra_6f1d89ea/readme"
}