MCP Server Setup
SprintVibe includes a built-in MCP (Model Context Protocol) server that lets AI coding assistants like Cursor, Claude Code, VS Code Copilot, Windsurf, and Zed interact directly with your sprint data.
Requirements
- Pro or Teams subscription
How it works
The MCP server uses JSON-RPC 2.0 over HTTP. Your coding assistant sends requests to SprintVibe's MCP endpoint, and receives structured data about your projects, sprints, and stories — allowing it to understand your tasks and update progress as you work.
Endpoint: https://gosprintvibe.com/mcp
Protocol: JSON-RPC 2.0
Authentication: OAuth (sign in with your browser) or an API key for headless use
Connecting with OAuth (recommended)
Point your MCP client at the endpoint and it will walk you through sign-in automatically — no keys to copy. When you add the server, your browser opens, you sign in to SprintVibe, and approve access on the consent screen. You can review or disconnect apps anytime under Settings → Connected Apps.
Claude Code
claude mcp add --transport http sprintvibe https://gosprintvibe.com/mcp
Then run /mcp inside Claude Code and choose Authenticate.
Cursor
Add to .cursor/mcp.json, then approve the sign-in prompt when Cursor connects:
{
"mcpServers": {
"sprintvibe": {
"url": "https://gosprintvibe.com/mcp"
}
}
}
VS Code
Add to .vscode/mcp.json:
{
"servers": {
"sprintvibe": {
"type": "http",
"url": "https://gosprintvibe.com/mcp"
}
}
}
Connecting with an API key (headless / CI)
For scripts, CI pipelines, or clients without a browser, generate a key under Settings → API Keys and pass it as a Bearer header:
{
"mcpServers": {
"sprintvibe": {
"url": "https://gosprintvibe.com/mcp",
"headers": {
"Authorization": "Bearer sv_your_api_key_here"
}
}
}
}
Verifying the connection
Once configured, your AI assistant should be able to use SprintVibe tools. Try asking it to "list my SprintVibe projects" or "show my current work in SprintVibe."
Managing access
- Settings → Connected Apps lists every application you've authorized via OAuth. Disconnecting one immediately revokes its tokens.
- Settings → API Keys manages static keys for headless use.