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

@simplypixi/bugbug-mcp-server

v0.1.0

Published

A Model Context Protocol server for BugBug functionality

Readme

BugBug Logo

BugBug MCP Server

Unofficial MCP Server for BugBug

A Model Context Protocol (MCP) server implementation in TypeScript that provides comprehensive tools for BugBug test automation platform.

Features

  • Complete BugBug API Integration: Full access to tests, suites, runs, and profiles
  • Cross AI Assistant Support: Works with Claude, Windsurf, GitHub Copilot, and other AI assistants
  • Advanced Tools: Wait for completion, error explanation, and batch operations
  • Smart Test Running: Run tests by name or UUID with intelligent matching
  • Real-time Monitoring: Track test and suite execution with live status updates
  • Built with TypeScript: Type safety and modern development practices

Setup

Prerequisites

  • Node.js 18 or higher
  • BugBug account and API token

Adding to AI Assistants

Add to your MCP settings:

{
  "mcpServers": {
    "bugbug": {
      "command": "npx",
      "args": ["-y", "@simplypixi/bugbug-mcp-server@latest"],
      "env": {
        "API_KEY": "your_bugbug_api_token_here"
      }
    }
  }
}

Available Tools

Advanced Tools

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | wait_for_test_run | Wait until test run finishes, return full results | runId, timeoutMinutes?, pollIntervalSeconds? | | wait_for_suite_run | Wait until suite run finishes, return full results | runId, timeoutMinutes?, pollIntervalSeconds? | | explain_error | Get error details and documentation | runId, runType | | show_run_from_last_24 | Show recent runs from last 24 hours | runType?, pageSize? | | run_test_by_name_or_id | Run test by name or UUID with smart matching | testNameOrId, profileName?, variables?, triggeredBy? |

Profiles

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | get_profiles | Get list of BugBug run profiles | page?, pageSize? | | get_profile | Get details of a specific run profile | profileId |

Tests

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | get_tests | Get list of BugBug tests | page?, pageSize?, query?, ordering? | | get_test | Get details of a specific test | testId | | update_test | Update a test (full update) | testId, name, isActive | | partial_update_test | Partially update a test | testId, name?, isActive? |

Test Suites

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | get_suites | Get list of test suites | page?, pageSize?, query?, ordering? | | get_suite | Get details of a specific test suite | suiteId |

Test Runs

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | get_test_runs | Get list of historical test runs | page?, pageSize?, ordering?, startedAfter?, startedBefore? | | get_test_run | Get detailed results of a test run | runId | | get_test_run_status | Get current status of a test run | runId | | get_test_run_screenshots | Get screenshots from a test run | runId | | stop_test_run | Stop a running test | runId |

Suite Runs

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | get_suite_run | Get detailed results of a suite run | runId | | get_suite_run_status | Get current status of a suite run | runId | | get_suite_run_screenshots | Get screenshots from a suite run | runId | | stop_suite_run | Stop a running suite | runId |

Configuration

| Tool Name | Description | Parameters | | --------------------------- | -------------------------------------------------- | -------------------------------------------------------------------- | | get_ip_addresses | Get list of BugBug infrastructure IP addresses | None |