by SmartBear
Enables AI assistants to interact with testing and monitoring tools via natural‑language queries, offering access to error monitoring, test management, API documentation, contract testing, and code review capabilities.
The server exposes SmartBear’s suite of testing and monitoring APIs through a Model Context Protocol (MCP) endpoint, allowing AI assistants to retrieve, analyze, and act upon data from tools such as BugSnag, Reflect, Swagger, PactFlow, QMetry, Zephyr, and Collaborator.
@smartbear/mcp (e.g., via npx).mcp.json or Claude Desktop config file..vscode/mcp.json or Claude Desktop JSON.Q: Do I need to provide tokens for every integrated tool? A: No. Tokens are optional; omit any you don’t plan to use and the corresponding integration will be disabled.
Q: Can I run the server locally without internet access? A: The server itself runs locally, but it must reach SmartBear’s cloud APIs, so internet connectivity is required for actual data retrieval.
Q: Which AI assistants are compatible? A: Any assistant that implements the Model Context Protocol, including Copilot, Claude, and other MCP‑compatible models.
Q: How do I update the package?
A: Run npm update @smartbear/mcp or reinstall via npx -y @smartbear/mcp@latest.
Q: Where can I find contribution guidelines?
A: See the CONTRIBUTING.md file in the repository for details on building and testing the project.
A Model Context Protocol (MCP) server which provides AI assistants with seamless access to SmartBear's suite of testing and monitoring tools, including BugSnag, Reflect, Swagger, PactFlow, Pact Broker, QMetry, Zephyr and Collaborator.
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. This server exposes SmartBear's APIs through natural language interfaces, allowing you to query your testing data, analyze performance metrics, and manage test automation directly from your AI workflow.
See individual guides for suggested prompts and supported tools and resources:
The MCP server is distributed as an npm package @smartbear/mcp, making it easy to integrate into your development workflow.
The server is started with the API key or auth token that you use with your SmartBear product(s). They are optional and can be removed from your configuration if you aren't using the product. For BugSnag, if you provide a project API key it will narrow down all searches to a single project in your BugSnag dashboard. Leave this field blank if you wish to interact across multiple projects at a time.
For the quickest setup, use the "MCP: Add server…" command in the Command Palette to add the @smartbear/mcp npm package.
Alternatively, you can use npx (or globally install) the @smartbear/mcp package to run the server and add the following to your .vscode/mcp.json file:
{
"servers": {
"smartbear": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@smartbear/mcp@latest"
],
"env": {
"BUGSNAG_AUTH_TOKEN": "${input:bugsnag_auth_token}",
"BUGSNAG_PROJECT_API_KEY": "${input:bugsnag_project_api_key}",
"REFLECT_API_TOKEN": "${input:reflect_api_token}",
"SWAGGER_API_KEY": "${input:swagger_api_key}",
"PACT_BROKER_BASE_URL": "${input:pact_broker_base_url}",
"PACT_BROKER_TOKEN": "${input:pact_broker_token}",
"PACT_BROKER_USERNAME": "${input:pact_broker_username}",
"PACT_BROKER_PASSWORD": "${input:pact_broker_password}",
"QMETRY_API_KEY": "${input:qmetry_api_key}",
"QMETRY_BASE_URL": "${input:qmetry_base_url}",
"ZEPHYR_API_TOKEN": "${input:zephyr_api_token}",
"ZEPHYR_BASE_URL": "${input:zephyr_base_url}",
"COLLAB_BASE_URL": "${input:collab_base_url}",
"COLLAB_USERNAME": "${input:collab_username}",
"COLLAB_LOGIN_TICKET": "${input:collab_login_ticket}"
}
}
},
"inputs": [
{
"id": "bugsnag_auth_token",
"type": "promptString",
"description": "BugSnag Auth Token - leave blank to disable BugSnag tools",
"password": true
},
{
"id": "bugsnag_project_api_key",
"type": "promptString",
"description": "BugSnag Project API Key - for single project interactions",
"password": false
},
{
"id": "reflect_api_token",
"type": "promptString",
"description": "Reflect API Token - leave blank to disable Reflect tools",
"password": true
},
{
"id": "swagger_api_key",
"type": "promptString",
"description": "Swagger API Key - leave blank to disable Swagger tools",
"password": true
},
{
"id": "pact_broker_base_url",
"type": "promptString",
"description": "PactFlow or Pact Broker base url - leave blank to disable the tools",
"password": true
},
{
"id": "pact_broker_token",
"type": "promptString",
"description": "PactFlow Authentication Token",
"password": true
},
{
"id": "pact_broker_username",
"type": "promptString",
"description": "Pact Broker Username",
"password": true
},
{
"id": "pact_broker_password",
"type": "promptString",
"description": "Pact Broker Password",
"password": true
},
{
"id": "qmetry_api_key",
"type": "promptString",
"description": "QMetry Open API Key",
"password": true
},
{
"id": "qmetry_base_url",
"type": "promptString",
"description": "By default, connects to https://testmanagement.qmetry.com. Change to a custom QMetry server URL or a region-specific endpoint if needed.",
"password": false
},
{
"id": "zephyr_api_token",
"type": "promptString",
"description": "Zephyr API token - leave blank to disable Zephyr tools",
"password": true
},
{
"id": "zephyr_base_url",
"type": "promptString",
"description": "Zephyr API base URL. By default, connects to https://api.zephyrscale.smartbear.com/v2. Change to region-specific endpoint if needed.",
"password": false
},
{
"id": "collab_base_url",
"type": "promptString",
"description": "Collab base url",
"password": true
},
{
"id": "collab_username",
"type": "promptString",
"description": "Collab username",
"password": true
},
{
"id": "collab_login_ticket",
"type": "promptString",
"description": "Collab login ticket",
"password": true
}
]
}
Add the following configuration to your claude_desktop_config.json to launch the MCP server via npx:
{
"mcpServers": {
"smartbear": {
"command": "npx",
"args": [
"-y",
"@smartbear/mcp@latest"
],
"env": {
"BUGSNAG_AUTH_TOKEN": "your_personal_auth_token",
"BUGSNAG_PROJECT_API_KEY": "your_project_api_key",
"REFLECT_API_TOKEN": "your_reflect_token",
"SWAGGER_API_KEY": "your_swagger_key",
"PACT_BROKER_BASE_URL": "your_pactflow_or_pactbroker_base_url",
"PACT_BROKER_TOKEN": "your_pactflow_token",
"PACT_BROKER_USERNAME": "your_pact_broker_username",
"PACT_BROKER_PASSWORD": "your_pact_broker_password",
"QMETRY_API_KEY": "your_qmetry_api_key",
"QMETRY_BASE_URL": "https://testmanagement.qmetry.com",
"ZEPHYR_API_TOKEN": "your_zephyr_api_token",
"ZEPHYR_BASE_URL": "https://api.zephyrscale.smartbear.com/v2",
"COLLAB_BASE_URL": "your collab base url",
"COLLAB_USERNAME": "your collab user name",
"COLLAB_LOGIN_TICKET": "your collab login ticket"
}
}
}
}
For detailed introduction, examples, and advanced configuration visit our 📖 Full Documentation
For developers who want to contribute to the SmartBear MCP server, please see the CONTRIBUTING.md guide.
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
SmartBear MCP Server - Bringing the power of SmartBear's testing and monitoring ecosystem to your AI-powered development workflow.
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
{
"mcpServers": {
"smartbear": {
"command": "npx",
"args": [
"-y",
"@smartbear/mcp"
],
"env": {
"BUGSNAG_AUTH_TOKEN": "<YOUR_BUGSNAG_AUTH_TOKEN>",
"BUGSNAG_PROJECT_API_KEY": "<YOUR_BUGSNAG_PROJECT_API_KEY>",
"REFLECT_API_TOKEN": "<YOUR_REFLECT_API_TOKEN>",
"SWAGGER_API_KEY": "<YOUR_SWAGGER_API_KEY>",
"PACT_BROKER_BASE_URL": "<YOUR_PACT_BROKER_BASE_URL>",
"PACT_BROKER_TOKEN": "<YOUR_PACT_BROKER_TOKEN>",
"PACT_BROKER_USERNAME": "<YOUR_PACT_BROKER_USERNAME>",
"PACT_BROKER_PASSWORD": "<YOUR_PACT_BROKER_PASSWORD>",
"QMETRY_API_KEY": "<YOUR_QMETRY_API_KEY>",
"QMETRY_BASE_URL": "<YOUR_QMETRY_BASE_URL>",
"ZEPHYR_API_TOKEN": "<YOUR_ZEPHYR_API_TOKEN>",
"ZEPHYR_BASE_URL": "<YOUR_ZEPHYR_BASE_URL>",
"COLLAB_BASE_URL": "<YOUR_COLLAB_BASE_URL>",
"COLLAB_USERNAME": "<YOUR_COLLAB_USERNAME>",
"COLLAB_LOGIN_TICKET": "<YOUR_COLLAB_LOGIN_TICKET>"
}
}
}
}claude mcp add smartbear npx -y @smartbear/mcp