Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sprintra": {
"args": [
"@sprintra/cli",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Your AI forgets. Sprintra remembers.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'create-sprintra' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked create-sprintra against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for io.github.Sprintra-io/sprintra and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
AI-native project management with persistent memory for coding agents
Your AI forgets. Sprintra remembers.
Sprintra gives your AI coding agent persistent memory — features, architecture decisions, sprint progress, and project context that survive session resets, token limits, and IDE switches.
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.
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.
# Install the CLI (42KB, zero native dependencies)
npm install -g @sprintra/cli
# Authenticate
sprintra login
# Auto-configure your AI tool
sprintra connect
# Scaffold a complete local project with server + dashboard
npx create-sprintra my-project
# Start the server
cd my-project
npm start
# Server + dashboard at http://127.0.0.1:4000
{
"mcpServers": {
"sprintra": {
"command": "npx",
"args": ["@sprintra/cli", "mcp"]
}
}
}
Or run: sprintra connect --tool claude-code
Add to .cursor/mcp.json:
{
"mcpServers": {
"sprintra": {
"command": "npx",
"args": ["@sprintra/cli", "mcp"]
}
}
}
Or run: sprintra connect --tool cursor
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"sprintra": {
"command": "npx",
"args": ["@sprintra/cli", "mcp"]
}
}
}
Run: sprintra connect --tool windsurf
For remote MCP connections (Claude.ai, mobile):
URL: https://api.sprintra.io/api/mcp
Auth: Bearer <your-token>
Transport: HTTP + SSE
Sprintra uses a consolidated tool pattern (inspired by GitHub's MCP server). Each tool accepts a method parameter to select the operation.
| Tool | Methods | Description |
|---|---|---|
projects | list, create, update, resolve, get_context | Manage projects with tech stack, status, and full context snapshots |
features | list, get_bundle, create, update, save_context, get_context | Epic-level work items with acceptance criteria and AI guidance |
stories | list, create, update, batch_update | Tasks under features — story, task, bug, chore types |
sprints | list, get_current, create, update, assign | Time-boxed iterations with progress tracking |
releases | list, create, update, generate_notes | Release milestones with auto-generated release notes |
| Tool | Methods | Description |
|---|---|---|
decisions | list, add, supersede, get_conflicts, resolve_conflict | Architecture Decision Records (ADRs) with AI conflict detection |
documents | li |