Files
claude-code-tools/.mcp.json
pkupuk db7c49f5d7 feat(bmad): initialize comprehensive BMAD system with agents and configurations
Add complete BMAD method implementation including:
- 20+ specialized agents (dev, qa, pm, architect, etc.)
- 50+ reusable tasks for workflow automation
- IDE-specific configurations for Claude, Cursor, Gemini
- Chat modes and rule definitions for various environments
- Web bundles and team configurations
- Documentation and checklists for BMAD processes

This establishes the full BMAD ecosystem for collaborative development workflows.
2025-10-10 14:24:52 +08:00

38 lines
786 B
JSON

{
"mcpServers": {
"serena": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server",
"--context",
"ide-assistant",
"--enable-web-dashboard",
"false",
"--project",
"/Users/pukpuk/claude-code-tools"
],
"env": {}
},
"zen": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env-file",
"/Users/pukpuk/Dev/zen-mcp-server/.env",
"-v",
"/Users/pukpuk/Dev/zen-mcp-server/logs:/app/logs",
"zen-mcp-server:latest"
]
},
"paypal": {
"type": "http",
"url": "https://mcp.paypal.com/mcp"
}
}
}