npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bugboard-mcp-server

v1.0.0

Published

MCP server for BugBoard - Create and manage bugs from AI agents

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-server

Or use directly with npx:

npx @bugboard/mcp-server

Setup

1. Get your API key

  1. Go to BugBoard: https://bugboard.co/app
  2. Navigate to your project's Settings > API Keys
  3. Create a new API key with bug management permissions
  4. 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 title
  • description: Detailed description
  • severity: critical | high | medium | low
  • priority: critical | high | medium | low
  • steps_to_reproduce: Step-by-step reproduction instructions
  • expected_result: What should happen
  • actual_result: What actually happened
  • module: Component/module name
  • labels: 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 happens

list_bugs

List bugs with optional filters.

Parameters:

  • status: triage | backlog | todo | in_progress | in_review | in_qa | ready_to_release | closed
  • severity: critical | high | medium | low
  • limit: Maximum bugs to return (default: 20)

Example:

List all critical bugs that are in triage

get_bug

Get detailed information about a specific bug.

Parameters:

  • bug_id (required): Bug ID (e.g., "BUG-000123")

Example:

Get details for bug BUG-000456

update_bug

Update an existing bug.

Parameters:

  • bug_id (required): Bug ID to update
  • status: New status
  • severity: New severity
  • priority: New priority
  • title: Updated title
  • description: Updated description
  • assigned_to: User email or UUID

Example:

Mark bug BUG-000456 as fixed

add_comment

Add a comment to a bug.

Parameters:

  • bug_id (required): Bug ID
  • content (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 claim
  • assigned_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 RFQA
  • comment: 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 start

License

MIT