Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bmad": {
"args": [
"-y",
"bmad-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol server that brings the BMAD Method to AI assistants.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'bmad-mcp-server' 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 bmad-mcp-server against OSV.dev.
Click any tool to inspect its schema.
BMAD FilesAccess BMAD methodology files, agent configurations, and workflows via URI
bmad://{path}
Mary (Business Analyst)Business analysis and market opportunity analysis agent
Winston (System Architect)System architecture design and architectural review agent
Amelia (Developer)Software development and coding agent
Sally (UX Designer)UX design and user experience specifications agent
Murat (Test Architect)Test architecture and testing strategy agent
John (Product Manager)Product management and requirements documentation agent
Bob (Scrum Master)Scrum and agile process management agent
Diana (Debug Specialist)Debugging and issue diagnosis agent
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
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Bmad Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol server that brings the BMAD Method to AI assistants.
The BMAD MCP Server provides AI assistants with access to 11 specialized agents and 36+ automated workflows from the BMAD (Building Modern Apps Decisively) methodology. Configure once, use everywhere across all your projects.
What is BMAD?
BMAD is a comprehensive software development methodology with specialized AI agents for different roles (Business Analyst, Architect, Developer, UX Designer, etc.) and workflows for common tasks (PRD generation, architecture design, debugging, testing).
Why MCP?
Instead of copying BMAD files to every project, the MCP server provides universal access:
Single bmad tool with intelligent operations:
// List available agents and workflows
{ operation: "list", query: "agents" }
// Read agent details (no execution)
{ operation: "read", type: "agent", agent: "analyst" }
// Execute agent with context
{ operation: "execute", agent: "analyst", message: "Help me..." }
| Agent | Role | Load with |
|---|---|---|
| 📊 Mary | Business Analyst | analyst |
| 🏗️ Winston | System Architect | architect |
| 💻 Amelia | Developer | dev |
| 🎨 Sally | UX Designer | ux-designer |
| 🧪 Murat | Test Architect | tea |
| 📋 John | Product Manager | pm |
| 🔄 Bob | Scrum Master | sm |
| 🐛 Diana | Debug Specialist | debug |
| ... | [+3 more agents] |
prd # Product Requirements Document
architecture # System architecture design
debug-inspect # Comprehensive debugging
atdd # Acceptance test generation
ux-design # UX specifications
party-mode # Multi-agent brainstorming
... and 30+ more
bmad tool for all operationsbmad:// URIsOption 1: npx (Recommended)
Add to your MCP client configuration:
{
"mcpServers": {
"bmad": {
"command": "npx",
"args": ["-y", "bmad-mcp-server"]
}
}
}
Option 2: Global Installation
npm install -g bmad-mcp-server
{
"mcpServers": {
"bmad": {
"command": "bmad-mcp-server"
}
}
}
Option 3: Local Development
git clone https://github.com/mkellerman/bmad-mcp-server.git
cd bmad-mcp-server
npm install
npm run build
{
"mcpServers": {
"bmad": {
"command": "node",
"args": ["/absolute/path/to/bmad-mcp-server/build/index.js"]
}
}
}
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"bmad": {
"command": "npx",
"args": ["-y", "bmad-mcp-server"]
}
}
}
Restart Claude Desktop.
</detai