bugboard-mcp-server
v1.0.0
Published
MCP server for BugBoard - Create and manage bugs from AI agents
Maintainers
Readme
@bugboard/mcp-server
MCP (Model Context Protocol) server for BugBoard. Allows AI agents like Claude Code to create and manage bugs directly from the terminal.
What can you do with this?
Once configured, you can talk to Claude naturally and it will manage your bugs:
File bugs without leaving your IDE
"I just found a bug - the checkout fails when the cart has more than 10 items.
Log it as high severity."Claude creates the bug with all details, returns the bug ID, and you keep coding.
Check project status during standup
"What critical bugs do we have open right now?"Get an instant summary without opening a browser.
Pick up a bug to fix
"Claim bug BUG-000234 and assign it to me"Bug set to In Progress, assigned to you - ready to code.
Mark bug as Ready For QA
"I just fixed BUG-000234. Mark it as RFQA with comment 'Fixed in PR #567'"Bug moved to In QA, comment added - QA team notified.
Triage incoming bugs
"Show me all bugs in triage. Then mark BUG-000567 as confirmed
and assign it to [email protected]"Review and process bugs without context-switching.
Document your investigation
"Add a comment to BUG-000890: Reproduced on Chrome 120.
The issue is in the payment validation logic, investigating further."Keep your team updated as you debug.
AI-assisted bug reports
When Claude helps you debug, it can file detailed bug reports automatically:
"This function is throwing a null pointer - can you figure out why
and file a bug if it's a real issue?"Claude investigates, identifies the root cause, and files a complete bug report.
Installation
npm install -g @bugboard/mcp-serverOr use directly with npx:
npx @bugboard/mcp-serverSetup
1. Get your API key
- Go to BugBoard: https://bugboard.co/app
- Navigate to your project's Settings > API Keys
- Create a new API key with bug management permissions
- Copy the key
2. Configure Claude Code
Add the MCP server to your Claude Code settings (~/.claude/settings.json):
{
"mcpServers": {
"bugboard": {
"command": "npx",
"args": ["@bugboard/mcp-server"],
"env": {
"BUGBOARD_API_KEY": "your-api-key-here",
"BUGBOARD_URL": "https://szbjzmpklprwjvgpmgga.supabase.co/functions/v1"
}
}
}
}3. Restart Claude Code
After updating settings, restart Claude Code for the MCP server to be loaded.
Available tools
create_bug
Create a new bug in BugBoard.
Parameters:
title(required): Short, descriptive titledescription: Detailed descriptionseverity: critical | high | medium | lowpriority: critical | high | medium | lowsteps_to_reproduce: Step-by-step reproduction instructionsexpected_result: What should happenactual_result: What actually happenedmodule: Component/module namelabels: Array of tags (e.g.,["ui", "regression"])environment: Browser, OS, version details
Example:
Create a bug: The login button is not responding on mobile Safari.
Severity: high
Steps: Open the app on iOS Safari, tap the login button
Expected: Login form should appear
Actual: Nothing happenslist_bugs
List bugs with optional filters.
Parameters:
status: triage | backlog | todo | in_progress | in_review | in_qa | ready_to_release | closedseverity: critical | high | medium | lowlimit: Maximum bugs to return (default: 20)
Example:
List all critical bugs that are in triageget_bug
Get detailed information about a specific bug.
Parameters:
bug_id(required): Bug ID (e.g., "BUG-000123")
Example:
Get details for bug BUG-000456update_bug
Update an existing bug.
Parameters:
bug_id(required): Bug ID to updatestatus: New statusseverity: New severitypriority: New prioritytitle: Updated titledescription: Updated descriptionassigned_to: User email or UUID
Example:
Mark bug BUG-000456 as fixedadd_comment
Add a comment to a bug.
Parameters:
bug_id(required): Bug IDcontent(required): Comment text
Example:
Add comment to BUG-000456: "Reproduced on Chrome 120, investigating"claim_bug
Pick up a bug to work on. Sets status to In Progress.
Parameters:
bug_id(required): Bug ID to claimassigned_to: Your email to assign the bug to yourself
Example:
Claim bug BUG-000456 and assign to [email protected]mark_rfqa
Mark a bug as Ready For QA (RFQA). Use when you've finished fixing.
Parameters:
bug_id(required): Bug ID to mark as RFQAcomment: Optional comment about the fix
Example:
Mark BUG-000456 as RFQA with comment "Fixed in PR #123"Environment variables
| Variable | Required | Description |
| ------------------ | -------- | ------------------------------------- |
| BUGBOARD_API_KEY | Yes | Your BugBoard API key |
| BUGBOARD_URL | No | API base URL (defaults to production) |
Usage examples
Creating a bug while debugging
When you encounter a bug during development:
Claude, I found a bug - the user profile page crashes when the bio field is empty.
Can you create a bug for this?Claude will use the create_bug tool to file the bug automatically.
Checking bug status
What bugs are currently in progress?Claude will use list_bugs with status filter.
Updating bug status after fixing
I just fixed the profile crash bug. Mark BUG-000789 as fixed.Claude will use update_bug to change the status.
Development
# Clone and install
git clone https://github.com/bugboard/mcp-server
cd mcp-server
npm install
# Build
npm run build
# Run locally
BUGBOARD_API_KEY=your-key npm startLicense
MIT
