| id | mcp-server |
|---|---|
| title | MCP Server |
| sidebar_position | 2 |
Use beads in MCP-only environments.
Use MCP server when CLI is unavailable:
- Claude Desktop (no shell access)
- Sourcegraph Amp without shell
- Other MCP-only environments
Prefer CLI + hooks when shell is available - it's more context efficient.
uv tool install beads-mcppip install beads-mcpAdd to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"beads": {
"command": "beads-mcp"
}
}
}Add to %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"beads": {
"command": "beads-mcp"
}
}
}Add to MCP settings:
{
"beads": {
"command": "beads-mcp",
"args": []
}
}Create .vscode/mcp.json in your project:
{
"servers": {
"beads": {
"command": "beads-mcp"
}
}
}For all projects: Add to VS Code user-level MCP config:
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/Code/User/mcp.json |
| Linux | ~/.config/Code/User/mcp.json |
| Windows | %APPDATA%\Code\User\mcp.json |
{
"servers": {
"beads": {
"command": "beads-mcp",
"args": []
}
}
}Note: Requires VS Code 1.96+ with MCP support enabled.
See GitHub Copilot Integration for complete setup guide.
The MCP server exposes these tools:
| Tool | Description |
|---|---|
beads_create |
Create new issue |
beads_list |
List issues |
beads_show |
Show issue details |
beads_update |
Update issue |
beads_close |
Close issue |
beads_ready |
Show ready work |
beads_sync |
Sync to git |
beads_dep_add |
Add dependency |
beads_dep_tree |
Show dependency tree |
Once configured, use naturally:
Create an issue for fixing the login bug with priority 1
The MCP server translates to appropriate bd commands.
| Aspect | CLI + Hooks | MCP Server |
|---|---|---|
| Context overhead | ~1-2k tokens | 10-50k tokens |
| Latency | Direct calls | MCP protocol |
| Setup | Hooks config | MCP config |
| Availability | Shell required | MCP environments |
Check if beads-mcp is in PATH:
which beads-mcpIf not found:
# Reinstall
pip uninstall beads-mcp
pip install beads-mcp- Restart Claude Desktop
- Check MCP config JSON syntax
- Verify server path
# Check directory permissions
ls -la .beads/
# Initialize if needed
bd init --quiet- Claude Code - CLI integration
- Installation - Full install guide