BugBug MCP
BugBug MCP is BugBug's official Model Context Protocol server. It gives AI agents live access to BugBug through 50 tools and 8 predefined workflow prompts.
Recommended setup: BugBug Plugin
Install BugBug Plugin through the CLI. It is the best setup route for supported clients because it configures MCP and installs BugBug Skills together. Choose your AI client:
npx @bugbug-io/cli plugin --agent=claudenpx @bugbug-io/cli plugin --agent=codexnpx @bugbug-io/cli plugin --agent=cursornpx @bugbug-io/cli plugin --agent=copilotnpx @bugbug-io/cli plugin --agent=vscodeFor a Streamable HTTP MCP client not supported by the installer, add this server entry to its MCP configuration. Keep any existing server entries and follow that client's documentation for the configuration-file location.
{
"mcpServers": {
"bugbug": {
"type": "http",
"url": "https://mcp.bugbug.io/mcp",
}
}
}Restart the selected client if needed, then complete its MCP OAuth sign-in flow. The CLI plugin command does not accept a --token option.
What the agent can do
BugBug MCP tools can inspect tests, suites, runs, steps, groups, components, profiles, variables, project settings, documentation, and available run evidence. Authorized tools can also create or update test assets and start runs.
See the BugBug MCP tools reference for the tool list and safe prompt examples.
Alternative setup: BugBug MCP only
Use this only when you do not want the bundled skills or your client cannot use the plugin installer. Use the Custom MCP client tab above to add the hosted endpoint to your client.
When supported, let the client complete the OAuth flow. For CI/CD or other non-interactive environments, use the authentication method supported by that environment and keep credentials in its secret manager.
Security best practices
Verify the endpoint before connecting:
https://mcp.bugbug.io/mcp.Prefer OAuth for interactive local use.
Explicitly authorize creation, updates, deletion, imports, and test runs.
Use read-only inspection first for planning, review, and debugging.
Do not commit credentials to repositories.
Related docs
FAQ
Last updated
Was this helpful?
