•The MCP server lets AI coding tools like Claude Code and Cursor access your bug information directly. You can list bugs, view details, and update statuses without leaving your editor.
•The npm package is @rubyjobs-jp/bugoon-mcp-server. It runs via npx, so no manual installation is needed.
•Setup: (1) Copy the secret key from the project settings page. (2) Add the MCP server configuration to your IDE's config file.
•For Claude Code: Add the following to .claude/settings.json. Set BUGOON_SECRET_KEY to the secret key you copied.
{
"mcpServers": {
"bugoon": {
"command": "npx",
"args": ["-y", "@rubyjobs-jp/bugoon-mcp-server"],
"env": {
"BUGOON_SECRET_KEY": "YOUR_SECRET_KEY",
"BUGOON_API_URL": "https://bugoon.com"
}
}
}
}•For Cursor: Add the following to .cursor/mcp.json.
{
"mcpServers": {
"bugoon": {
"command": "npx",
"args": ["-y", "@rubyjobs-jp/bugoon-mcp-server"],
"env": {
"BUGOON_SECRET_KEY": "YOUR_SECRET_KEY",
"BUGOON_API_URL": "https://bugoon.com"
}
}
}
}•Available features: List bug reports, get bug report details, update statuses, get project info, and more. AI can understand the bug context and use it for fixing.
•Usage examples: You can instruct the AI agent like this:
# Get triage bugs, check them in the browser,
# and update confirmed ones to open status
# Get open bugs, fix them one by one,
# and update each to resolved when done
# Show me the details of bug report #42
# List all critical bugs
•Supported tools: Works with any tool that supports MCP (Model Context Protocol), including Claude Code, Cursor, and other MCP-compatible editors and tools.