freshcrate
Skin:/
Home > MCP Servers > smartbear-mcp

smartbear-mcp

SmartBear's official MCP Server

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

SmartBear's official MCP Server

README

SmartBear logo

SmartBear MCP server

Test Status Coverage npm version MCP Compatible Documentation

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.

What is MCP?

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.

Supported Tools

See individual guides for suggested prompts and supported tools and resources:

  • BugSnag - Comprehensive error monitoring and debugging capabilities
  • Reflect - Test management and execution capabilities
  • Swagger
    • Portal - Portal and product management capabilities
    • Studio - API and Domain management capabilities, including AI-powered API generation from prompts and automatic standardization
    • Contract Testing (PactFlow) - Contract testing capabilities
  • QMetry - QMetry Test Management capabilities
  • Zephyr - Zephyr Test Management capabilities
  • Collaborator - Review and Remote System Configuration management capabilities

Prerequisites

  • Node.js 20+ and npm
  • Access to SmartBear products (BugSnag, Reflect, Swagger, QMetry, or Zephyr)
  • Valid API tokens for the products you want to integrate

Installation

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.

VS Code with Copilot

For the quickest setup, use the "MCP: Add serverโ€ฆ" command in the Command Palette to add the @smartbear/mcp npm package.

๐Ÿ“‹ Manual installation

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}",
        "SWAGGER_PORTAL_BASE_PATH": "${input:swagger_portal_base_path}",
        "SWAGGER_REGISTRY_BASE_PATH": "${input:swagger_registry_base_path}",
        "SWAGGER_UI_BASE_PATH": "${input:swagger_ui_base_path}",
        "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}",
        "COLLABORATOR_BASE_URL": "${input:collab_base_url}",
        "COLLABORATOR_USERNAME": "${input:collab_username}",
        "COLLABORATOR_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": "swagger_portal_base_path",
         "type": "promptString",
         "description": "Swagger Portal API base path - only needed for on-premise installations (leave blank for cloud)",
         "password": false
      },
      {
         "id": "swagger_registry_base_path",
         "type": "promptString",
         "description": "Swagger Registry API base path - only needed for on-premise installations (leave blank for cloud)",
         "password": false
      },
      {
         "id": "swagger_ui_base_path",
         "type": "promptString",
         "description": "Swagger UI base path - only needed for on-premise installations (leave blank for cloud)",
         "password": false
      },
      {
         "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
      }
  ]
}

Claude Desktop

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",
        "SWAGGER_PORTAL_BASE_PATH": "https://api.portal.swaggerhub.com/v1",
        "SWAGGER_REGISTRY_BASE_PATH": "https://api.swaggerhub.com",
        "SWAGGER_UI_BASE_PATH": "https://app.swaggerhub.com",
        "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",
        "COLLABORATOR_BASE_URL": "your collab base url",
        "COLLABORATOR_USERNAME": "your collab user name",
        "COLLABORATOR_LOGIN_TICKET": "your collab login ticket"
      }
    }
  }
}

Documentation

For detailed introduction, examples, and advanced configuration visit our ๐Ÿ“– Full Documentation

Local Development

For developers who want to contribute to the SmartBear MCP server, please see the CONTRIBUTING.md guide.

License

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.

Support


SmartBear MCP Server - Bringing the power of SmartBear's testing and monitoring ecosystem to your AI-powered development workflow.

Release History

VersionChangesUrgencyDate
v0.25.0 ### Added - [Common] Add `MCP_TOOLSETS` environment variable to allow tools to be grouped into sets for better organization and client control [#474](https://github.com/SmartBear/smartbear-mcp/pull/474) - [Common] Split authorization and configuration options to better suit OAuth flow [#487](https://github.com/SmartBear/smartbear-mcp/pull/487) - [QTM4J] Added support for linking and unlinking requirements, test cases, and test cycles through new tools. [#505](https://github.com/SmartBear/smartHigh6/3/2026
v0.24.0 ### Added - [QTM4J] Added test cycle management capabilities, including create, search, and update operations. [#501](https://github.com/SmartBear/smartbear-mcp/pull/501) - [QTM4J] Added test automation capabilities, including automation result uploads and import history retrieval. [#501](https://github.com/SmartBear/smartbear-mcp/pull/501) ### Fixed - [PactFlow] Remove `.email()` Zod validator from PactFlow admin user tool schemas โ€” the generated JSON Schema pattern used regex lookahead whiHigh5/28/2026
v0.23.0 ### Added - [BearQ] Add BearQ integration with 11 tools for AI-powered QA: run regression tests, run/refine test cases and functional areas, expand the application model, chat with the QA lead agent, and manage async tasks (`get_task`, `get_task_status`, `wait_for_task`, `stop_task`) [#479](https://github.com/SmartBear/smartbear-mcp/pull/479)High5/22/2026
v0.22.0 ### Fixed - [Common] Only advertise prompts and resources capabilities when provided by clients [#480](https://github.com/SmartBear/smartbear-mcp/pull/480)High5/21/2026
v0.20.0## What's Changed * fix: allow pact client start with no params by @tomlongridge in https://github.com/SmartBear/smartbear-mcp/pull/445 * test: add snapshot tests to detect changes in tool definitions by @tomlongridge in https://github.com/SmartBear/smartbear-mcp/pull/450 * refactor: update all tools to use inputSchema rather than parameters by @tomlongridge in https://github.com/SmartBear/smartbear-mcp/pull/446 * fix: unwrapping of Zod types for tool definitions by @tomlongridge in https://High5/15/2026
v0.19.2 ## What's Changed * TM4J-17174 quick fix - update zephyr schemas for rovo by @kordian-smartbear in https://github.com/SmartBear/smartbear-mcp/pull/439 * release: v0.19.1 by @kordian-smartbear in https://github.com/SmartBear/smartbear-mcp/pull/440 * chore: remove deploy files and from bump script by @sazap10 in https://github.com/SmartBear/smartbear-mcp/pull/426 * TM4J-17231 Update test case and cycle fix by @kordian-smartbear in https://github.com/SmartBear/smartbear-mcp/pull/442 * releasHigh5/5/2026
v0.19.0## Added - [Reflect] Add jpeg format support for get-screenshot tool https://github.com/SmartBear/smartbear-mcp/pull/435 - [Swagger] Added optional newVersion parameter to the standardize_api tool to save the fixed API definition as a new version instead of overwriting the current one ### Full Changelog: https://github.com/SmartBear/smartbear-mcp/compare/v0.18.3...v0.19.0High4/29/2026
v0.18.3## [0.18.3] - 2026-04-16 ## Added * [Zephyr] Added zephyr custom base url for remote mcp config https://github.com/SmartBear/smartbear-mcp/pull/428 **Full Changelog**: https://github.com/SmartBear/smartbear-mcp/compare/v0.18.2...v0.18.3High4/16/2026
v0.18.2## [0.18.2] - 2026-04-15 ### Fixed - [Common] Updated dependencies to address security vulnerabilities [#423](https://github.com/SmartBear/smartbear-mcp/pull/423) **Full Changelog**: https://github.com/SmartBear/smartbear-mcp/compare/v0.18.1...v0.18.2High4/15/2026
v0.18.1## [0.18.1] - 2026-04-13 ### Fixed - [Common] Fixed an issue with configuring clients excessively when using stdio transport, only configure clients that have authentication provided [#421](https://github.com/SmartBear/smartbear-mcp/pull/421) **Full Changelog**: https://github.com/SmartBear/smartbear-mcp/compare/v0.18.0...v0.18.1High4/13/2026
v0.18.0## [0.18.0] - 2026-04-10 ### Added - [Common] Added OAuth token support for HTTP transport clients. [#330](https://github.com/SmartBear/smartbear-mcp/pull/330) ### Changed - [Portal] Adjusted internal script to recent changes in Portal's API [#404](https://github.com/SmartBear/smartbear-mcp/pull/404) **Full Changelog**: https://github.com/SmartBear/smartbear-mcp/compare/v0.17.1...v0.18.0Medium4/13/2026
v0.17.1## [0.17.1] - 2026-04-09 ### Added - [Pactflow] Added tools for CRUD over BDCT, Pacticipants, Environments, Permissions management [#414](https://github.com/SmartBear/smartbear-mcp/pull/414)High4/10/2026
v0.17.0### Added - [Zephyr] Added a tool `update-test-steps` for updating test execution test steps [#386](https://github.com/SmartBear/smartbear-mcp/pull/386) - [BugSnag] Added "Get Events on an Error" tool for listing the events that have grouped into a specified error [#406](https://github.com/SmartBear/smartbear-mcp/pull/406) ### Changed - [Zephyr] Added context to the `create-test-case` tool description about automatic empty test step creation. [#401](https://github.com/SmartBear/smartbear-mHigh4/7/2026
v0.16.0### Added - [Reflect] Added `list_segments` tool: Lists the reusable test steps in the account, and includes some relevant metadata about each segment to help the Agent understand when a segment could be used as part of accomplishing a task. [#369](https://github.com/SmartBear/smartbear-mcp/pull/369) - [Reflect] Added `connect_to_session` tool: Establishes a WebSocket connection to a live Reflect test recording session. [#369](https://github.com/SmartBear/smartbear-mcp/pull/369) - [Reflect]Medium3/26/2026
v0.15.0### Added - [Zephyr] Added a tool `create-issue-link` for creating a link between a Jira issue and a Test Case [#340](https://github.com/SmartBear/smartbear-mcp/pull/340) - [Zephyr] Added a tool `create-folder` for creating folder [#329](https://github.com/SmartBear/smartbear-mcp/pull/329) - [Zephyr] Added a tool `create-test-script` for creating Test Script [#328](https://github.com/SmartBear/smartbear-mcp/pull/328) - [Zephyr] Added a tool `create-test-steps` for creating Test Steps for aLow3/18/2026
v0.14.1### Fixed - [Zephyr] Fix issue with tools output schema validationLow2/27/2026
v0.14.0### Added - [Zephyr] Added a tool `create-test-case` for creating a Test Case [#320](https://github.com/SmartBear/smartbear-mcp/pull/320) - [Zephyr] Added a tool `create-test-cycle` for creating a Test Cycle [#323](https://github.com/SmartBear/smartbear-mcp/pull/323) - [Zephyr] Added a tool `update-test-case` for updating a Test Case [#325](https://github.com/SmartBear/smartbear-mcp/pull/325) - [Zephyr] Added a tool `update-test-cycle` for updating a Test Cycle [#336](https://github.com/SmLow2/26/2026
v0.13.5## [0.13.5] - 2026-02-02 ### Fixed - [Swagger] Shorten tool name for API creation prompt [#317](https://github.com/SmartBear/smartbear-mcp/pull/317) - [Common] Update images in docs [#316](https://github.com/SmartBear/smartbear-mcp/pull/316)Low2/2/2026
v0.13.4## [0.13.4] - 2026-01-28 ### Fixed - Default URI to the Swagger UserManagementApi updated Low1/28/2026
v0.13.3## [0.13.3] - 2026-01-21 ### Fixed - [common] added pollyfills for sampling and elicitation to enable these mcp features to be used in ai apps like claude code [#306](https://github.com/SmartBear/smartbear-mcp/pull/306) - [docs] update docs on cursor setupLow1/21/2026
v0.13.2## [0.13.2] - 2026-01-13 ### Fixed - [common] update to latest mcp server.json schema from the previous deprecated schemaLow1/13/2026
v0.13.1## [0.13.1] - 2026-01-13 ### Fixed - [common] npm publish issue in dockerfileLow1/13/2026
v0.13.0### Added - [Swagger] Added `SWAGGER_PORTAL_BASE_PATH`, `SWAGGER_REGISTRY_BASE_PATH` and `SWAGGER_UI_BASE_PATH` environment variables for configuring custom API endpoints, useful for on-premise Swagger Studio installations [#283](https://github.com/SmartBear/smartbear-mcp/pull/283) - [PactFlow] Add metrics tools [#281](https://github.com/SmartBear/smartbear-mcp/pull/281) - [Swagger] Extract version from X-Version header and update response structure [#287](https://github.com/SmartBear/smartLow1/12/2026
v0.12.1### Changed - [Swagger] Removed delete document functionality as this operation is not supported by the Portal API - [Swagger] Removed delete portal functionality as this operation is not allowed via MCP ### Fixed - [BugSnag] Fixed an issue with filter query formatting [#277](https://github.com/SmartBear/smartbear-mcp/pull/277)Low12/9/2025
v0.12.0### Added - [Zephyr] Added a tool for retrieving Environments [#243](https://github.com/SmartBear/smartbear-mcp/pull/243) - [Zephyr] Added a tool for retrieving a list of Test Executions [#213](https://github.com/SmartBear/smartbear-mcp/pull/213) - [Swagger] Added `create_api_from_prompt` tool for generating API definitions from natural language descriptions using SmartBear AI, with automatic governance and standardization [#257](https://github.com/SmartBear/smartbear-mcp/pull/257) - [SwagLow12/3/2025
v0.11.0### Added - [Zephyr] Added a tool for retrieving Test Cycle [#210](https://github.com/SmartBear/smartbear-mcp/pull/210) - [Zephyr] Added a tool for retrieving statuses [#212](https://github.com/SmartBear/smartbear-mcp/pull/212) - [Zephyr] Added a tool for retrieving Test Cases [#230](https://github.com/SmartBear/smartbear-mcp/pull/230) - [BugSnag] Add "Get Current Project" tool to retrieve details of the currently configured project and improve project detection if not configured at startup Low11/20/2025
v0.10.0### Added - [Qmetry] New QMetry MCP Server Tools Added, Refactored the existing tools structure https://github.com/SmartBear/smartbear-mcp/pull/217 - [Collaborator] Initial Collaborator client implementation https://github.com/SmartBear/smartbear-mcp/pull/223Low11/11/2025
v0.9.0### Added - [Qmetry] Added 4 New QMetry tools to enhance test management capabilities [#194](https://github.com/SmartBear/smartbear-mcp/pull/194) - [Qmetry] Implement comprehensive test case tooling with enhanced error handling [#193](https://github.com/SmartBear/smartbear-mcp/pull/193) - [API Hub] Add `scan_api_standardization` tool for validating API definitioLow10/22/2025
v0.8.0### Added - [API Hub] Add `create_or_update_api` tool for creating or updating new API definitions in API Hub for Design - [API Hub] Add `create_api_from_template` tool for creating new API definitions from templates in API Hub for Design - [Zephyr] Add Zephyr capabilities to MCP [#171](https://github.com/SmartBear/smartbear-mcp/pull/171) ### Changed - [BugSnag] Consolidate release and build tools [#173](https://github.com/SmartBear/smartbear-mcp/pull/173)Low10/13/2025
v0.7.0### Added - [Qmetry] Add QMetry Test Management capabilities to MCP [#152](https://github.com/SmartBear/smartbear-mcp/pull/152) - [API Hub] Add `search_apis_and_domains` tool for discovering APIs and Domains in API Hub for Design [#154](https://github.com/SmartBear/smartbear-mcp/pull/154) - [API Hub] Add `get_api_definition` tool for fetching resolved API definitions from API Hub for Design [#154](https://github.com/SmartBear/smartbear-mcp/pull/154)Low10/2/2025
v0.6.0### Added - [PactFlow] Add tool for matrix [#118](https://github.com/SmartBear/smartbear-mcp/pull/118) - [PactFlow] Add tool for fetching AI entitlement [#129](https://github.com/SmartBear/smartbear-mcp/pull/129) - [PactFlow] Add matcher recommendation in generate and review tool [#130](https://github.com/SmartBear/smartbear-mcp/pull/130) - [BugSnag] Retrieve releases and builds, including stability scores [#139](https://github.com/SmartBear/smartbear-mcp/pull/109) ### Changed - [BugLow9/22/2025
v0.5.0## What's Changed ### Added - [BugSnag] Add pagination, sorting and total counts to list errors tool [#88](https://github.com/SmartBear/smartbear-mcp/pull/88) - [PactFlow] Add remote OAD reading support to Generate and Review tool [#104](https://github.com/SmartBear/smartbear-mcp/pull/104) - [PactFlow] Add tool for can-i-deploy PactFlow API [#106](https://github.com/SmartBear/smartbear-mcp/pull/106) ### Changed - [BugSnag] BREAKING CHANGE: Rename Insight Hub tool to BugSnag, followLow9/8/2025
v0.4.0## What's Changed ### Added - [Common] Add abstract server and registerTools / resources to simplify tool registration and standardise error monitoring across products [#70](https://github.com/SmartBear/smartbear-mcp/pull/70) - [PactFlow] Add tool to generate Pact tests [#71](https://github.com/SmartBear/smartbear-mcp/pull/71) - [PactFlow] Add tool to fetch provider states for PactFlow and Pact Broker [#87](https://github.com/SmartBear/smartbear-mcp/pull/87) - [PactFlow] Add tool to revLow8/27/2025
v0.3.0## What's Changed ### Added - Add vitest for unit testing [#41](https://github.com/SmartBear/smartbear-mcp/pull/41) - [Insight Hub] Add tool to update errors [#45](https://github.com/SmartBear/smartbear-mcp/pull/45) - [Insight Hub] Add latest event and URL to error details [#47](https://github.com/SmartBear/smartbear-mcp/pull/47) ### Changed - [Insight Hub] Improve data returned when getting error information [#61](https://github.com/SmartBear/smartbear-mcp/pull/61) ### Removed Low8/11/2025
v0.2.2## What's Changed - [API Hub] Add user agent header to API requests [#34](https://github.com/SmartBear/smartbear-mcp/pull/34) - [Reflect] Add user agent header to API requests [#34](https://github.com/SmartBear/smartbear-mcp/pull/34) **Full Changelog**: https://github.com/SmartBear/smartbear-mcp/compare/v0.2.1...v0.2.2Low7/11/2025
v0.2.1## What's Changed - Bumped `@modelcontextprotocol/sdk` to latest (v1.15.0) [#29](https://github.com/SmartBear/smartbear-mcp/pull/29) - [Insight Hub] Improved tool descriptions [#29](https://github.com/SmartBear/smartbear-mcp/pull/29) - [Insight Hub] Add API headers to support On-premise installations [#30](https://github.com/SmartBear/smartbear-mcp/pull/30)Low7/9/2025
v0.2.0## What's Changed - [Insight Hub] Add project API key configuration and initial caching [#27](https://github.com/SmartBear/smartbear-mcp/pull/27) - [Insight Hub] Add error filtering by both standard fields and custom filters [#27](https://github.com/SmartBear/smartbear-mcp/pull/27) - [Insight Hub] Add endpoint configuration for non-bugsnag.com endpoints and improve handling for unsuccessful status codes [#27](https://github.com/SmartBear/smartbear-mcp/pull/26)Low7/8/2025
v0.1.1## What's Changed * chore(repo): fix minor typos by @frankkilcommins in https://github.com/SmartBear/smartbear-mcp/pull/20 * Add more fields to package.json and fix links in npm by @sazap10 in https://github.com/SmartBear/smartbear-mcp/pull/23 * Fix bin name by @sazap10 in https://github.com/SmartBear/smartbear-mcp/pull/19 * docs: update support contacts by @tomlongridge in https://github.com/SmartBear/smartbear-mcp/pull/12 * Update instructions to use npm package by @sazap10 in https://gitLow7/1/2025
v0.1.0## What's Changed * Simplify API for insight hub and also handle pagination by @sazap10 in https://github.com/SmartBear/smartbear-mcp/pull/11 * fix portal products path by @mzheng-sb in https://github.com/SmartBear/smartbear-mcp/pull/14 * Configure Node CI by @gingerbenw in https://github.com/SmartBear/smartbear-mcp/pull/13 * Change package name and version for publishing by @sazap10 in https://github.com/SmartBear/smartbear-mcp/pull/16 * Read version from package.json and create static serLow7/1/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

opentabsBrowser automation clicks buttons. OpenTabs calls APIs.main@2026-06-06
kibiRepo-local, per-git-branch, queryable knowledge base for LLM Agents.kibi-mcp@0.16.1
metorial-platformThe engine powering hundreds of thousands of MCP connections ๐Ÿค– ๐Ÿ”ฅdev@2026-06-06
studioOpen-source control plane for your AI agents. Connect tools, hire agents, track every token and dollarv2.396.1
mcp-ts-coreAgent-native TypeScript framework for building MCP servers. Build tools, not infrastructure.v0.10.0

More in MCP Servers

claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme
hyperframesWrite HTML. Render video. Built for agents.
claude-code-guideClaude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks go from beginner to power user!