Agile Backlog MCP
Click on "Deploy 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., "@Agile Backlog MCPcreate a story for user authentication epic to allow password reset"
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.
Agile MCP
A comprehensive agile backlog management system built with the Model Context Protocol (MCP), featuring project isolation, multi-agent support, and interactive visualization
Overview
Agile MCP provides a complete agile backlog management solution that bridges AI agents and human teams. It consists of three integrated components:
MCP Server: Exposes agile backlog tools via Model Context Protocol for AI agents (Claude, etc.)
Web UI: Interactive dashboard for humans with dependency graphs and hierarchy trees
Shared Database: SQLite database with project isolation and security auditing
Related MCP server: Agile Planner MCP Server
Key Features
š Project Isolation
Identifier-based security: Each project has a unique identifier
Multi-project support: Manage multiple repositories in a single database
Access control: AI agents can only access items from their registered project
Security auditing: All access attempts logged for compliance
š¤ MCP Server (AI Agent Interface)
Epic, Story, and Task Management: Full CRUD operations
Sprint & Iteration Planning: Create sprints, manage capacity, track velocity
Burndown Tracking: Daily snapshots and burndown chart data
Dependency Tracking: Create dependencies with circular dependency prevention
Conflict Detection: Track modifications to detect concurrent edits
Export Capabilities: Export backlog data for analysis
MCP Resources: Read-only views for backlog overview and dependencies
š Web UI (Human Interface)
Project Management: Register and switch between projects
Full CRUD Operations: Create, edit, and delete epics, stories, and tasks
Sprint Management: Create and manage sprints, add/remove stories
Sprint Board: Kanban-style board with drag-and-drop (5 status columns)
Burndown Charts: Visual burndown tracking with ideal vs actual lines
Velocity Reports: Historical velocity calculation for sprint planning
Backlog List View: Filterable list with sprint and epic filtering
Dependency Graph: Interactive React Flow visualization showing story dependencies
Hierarchy Tree: D3-powered tree view of Epic ā Story ā Task relationships
Responsive Design: Mobile-friendly interface with adaptive layouts
š¾ Database & Security
SQLite with WAL mode: Fast, reliable local storage
Foreign key constraints: Cascade deletes maintain data integrity
Automatic migrations: Database schema updates applied automatically
Security logs: Audit trail for unauthorized access attempts
Conflict detection: Track concurrent modifications
Architecture
agile-mcp/
āāā mcp-server/ # MCP server for AI agent access
ā āāā src/
ā ā āāā tools/ # Tool handlers (project, epic, story, task, dependency)
ā ā āāā resources/ # MCP resource handlers
ā ā āāā index.ts # Server entry point
ā āāā package.json
āāā web-ui/ # React visualization dashboard
ā āāā server/ # Express REST API server (port 3004)
ā āāā src/
ā ā āāā components/ # React components
ā ā āāā utils/ # API client
ā ā āāā types/ # TypeScript types
ā āāā package.json
āāā shared/ # Shared database schema & types
ā āāā src/
ā āāā database.ts # SQLite database class
ā āāā types.ts # Shared TypeScript types
āāā agile-backlog.db # SQLite database fileQuick Start
Prerequisites
Node.js 18+
npm 9+
Installation
# Install dependencies for all workspaces
npm install
# Build shared package
cd shared && npm run build && cd ..
# Build MCP server
cd mcp-server && npm run build && cd ..Usage
For AI Agents (MCP Server)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"agile-mcp": {
"command": "node",
"args": ["/absolute/path/to/agile-mcp/mcp-server/dist/index.js"]
}
}
}Then in Claude:
Register this project: "my-app"
Create an epic for user authentication
Add a story for login functionality to that epicFor Humans (Web UI)
cd web-ui
npm run devVisit http://localhost:3004 to access:
Backlog List (
/) - Filterable story list with CRUD operations and sprint filteringSprint Board (
/project/:id/sprint/:sprintId) - Kanban board for active sprintsBurndown Chart (
/project/:id/sprint/:sprintId/burndown) - Sprint burndown visualizationDependency Graph (
/project/:id/dag) - Interactive dependency visualizationHierarchy Tree (
/project/:id/tree) - Epic ā Story ā Task hierarchy
Core Concepts
Projects
Each project represents a codebase/repository with its own isolated backlog:
Unique identifier (e.g.,
"frontend-app","api-service")All epics, stories, and tasks belong to a project
AI agents must register projects before creating backlog items
Epics, Stories, and Tasks
Standard agile hierarchy:
Epics: High-level feature areas or initiatives
Stories: User stories with priority, points, and status
Tasks: Actionable sub-items of stories
Sprints & Iterations
Time-boxed work periods with capacity planning:
Sprint lifecycle: planning ā active ā completed
Story assignment: Add/remove stories from sprints
Capacity tracking: Monitor committed vs completed points
Burndown charts: Track remaining work over time
Velocity metrics: Calculate historical team velocity
Daily snapshots: Record progress for burndown visualization
Dependencies
Story-to-story relationships:
blocks / blocked_by dependency types
Automatic circular dependency detection
Visualized in dependency graph view
Status Workflow
All items follow this workflow:
todo ā in_progress ā review ā done
ā ā
blocked āāāāāāāāāTechnology Stack
Layer | Technology |
MCP Protocol | @modelcontextprotocol/sdk |
Database | SQLite (better-sqlite3) |
Backend API | Express.js, TypeScript |
Frontend | React 18, TypeScript, Vite |
Graph Visualization | React Flow (@xyflow/react) |
Tree Visualization | D3.js |
Styling | Tailwind CSS |
Icons | Lucide React |
Documentation
QUICKSTART.md - Get started in 5 minutes
ARCHITECTURE.md - Technical architecture and design
MCP_SERVER.md - Complete MCP tool reference for AI agents
API_REFERENCE.md - REST API documentation for developers
DEPLOYMENT.md - Production deployment guide
Example Workflows
AI Agent Workflow
// 1. Register project
Tool: register_project
{
"project_identifier": "my-app",
"name": "My Application",
"description": "Main application project"
}
// 2. Create epic
Tool: create_epic
{
"project_identifier": "my-app",
"agent_identifier": "claude",
"title": "User Authentication",
"description": "Implement secure user authentication"
}
// 3. Create story
Tool: create_story
{
"project_identifier": "my-app",
"agent_identifier": "claude",
"epic_id": 1,
"title": "Login page",
"description": "Create login UI with email and password",
"priority": "high",
"points": 5
}
// 4. Add dependency
Tool: add_dependency
{
"project_identifier": "my-app",
"agent_identifier": "claude",
"story_id": 2,
"depends_on_story_id": 1,
"dependency_type": "blocks"
}Web UI Workflow
Select project from dropdown (or create new project)
Click "New Epic" to create an epic
Click "New Story" to create a story
Click "New Sprint" to create a sprint for iteration planning
Add stories to sprints from story detail pages
View active sprint board by clicking "Active Sprint" button
Track progress with burndown charts
Use edit/delete icons for modifications
Switch to "Dependency Graph" to visualize relationships
Switch to "Hierarchy Tree" to see the full hierarchy
Security Features
Project Isolation
Each project has a unique identifier
All MCP tools validate project access
Cross-project access attempts are blocked and logged
Audit Trail
Security logs track all access violations
Event types:
unauthorized_access,project_violation,conflict_detectedAccessible via
/api/security-logsendpoint
Conflict Detection
Tracks
last_modified_byfor all entitiesDetects concurrent modifications
Warns when multiple agents edit the same item
Development
Build All Packages
npm run buildWatch Mode
# MCP server
cd mcp-server && npm run dev
# Web UI (runs both API server and Vite dev server)
cd web-ui && npm run devDatabase Location
The SQLite database is created at ./agile-backlog.db in the project root.
Contributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch
Make your changes
Submit a pull request
License
MIT License - see LICENSE file for details
Support
Issues: Report bugs or request features via GitHub issues
Documentation: See docs/ directory for detailed guides
MCP SDK: https://github.com/anthropics/mcp
Built with ā¤ļø for seamless AI-human collaboration in agile development
This server cannot be deployed
Maintenance
Related MCP Connectors
AI-native project management + agent memory: tasks, sprints, risk, burnout, knowledge search.
AI-first project management: plan epics, assign prioritized tasks, track team time.
- DartOAuthcom.dartai
AI-native project management for tasks, docs, collaboration, and agents.
Track stories, organize sprints, and manage project workflows across your team
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables AI agents to track and manage product development projects through structured 7-phase lifecycles with sprint tracking, role-based collaboration, and multi-project support. Provides phase management, progress tracking, and team coordination tools for complete product development workflows.-
- AlicenseNot gradedqualityDmaintenanceAutomatically generates structured agile backlogs including epics, features, and user stories from natural language descriptions within AI-powered IDEs. It streamlines project management by creating AI-optimized markdown files and directory structures to guide step-by-step implementation.11 npm3MIT
- FlicenseNot gradedqualityDmaintenanceA comprehensive project management system that provides a full-featured Kanban board and dashboard accessible to AI agents. It enables agents to programmatically manage projects, tasks, and workflows through a suite of 13 specialized tools and 4 resource types.4-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to manage projects, epics, and tasks with atomic locking, real-time dashboard, and multi-agent coordination.MIT