ReportPortal MCP Server

MCP server for ReportPortal

Remote serverstreamable-httpGo

What is the ReportPortal MCP server?

MCP server for ReportPortal. That is what the reportportal mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

The ReportPortal MCP Server is a bridge between your ReportPortal instance and AI chat assistants (such as Claude Desktop, GitHub Copilot, Cursor). In simple terms, it lets you ask questions in plain English about your test runs and get answers directly from ReportPortal. It follows the official MCP guidelines.

  • Quick Test Insights — Instantly retrieve summaries of test runs, failure counts, or error details without writing code or navigating the UI
  • TMS from Chat — Browse, create, and update test cases, folders, milestones, and test plans in ReportPortal TMS without leaving your AI assistant
  • Chat-Based Queries — Use your favourite AI assistant (Claude, Cursor, etc.) to converse with ReportPortal data. It's like having a smart test-reporting helper in your chat window
  • Integration Flexibility — Works with any MCP-compatible AI tool. You simply point the tool at this server and it can run ReportPortal queries under the hood
  • No Custom Scripts Needed — Common queries (listing runs, getting failures, analysis, TMS lookups) are built-in as simple "commands" you invoke via chat

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: RP_API_TOKEN, RP_HOST, RP_PROJECT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Before setting up the MCP server, you need the following information from your ReportPortal instance:

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by reportportal; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against ReportPortal's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How to install the ReportPortal MCP server

{
  "mcpServers": {
    "reportportal": {
      // paste your chosen configuration here
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

Before setting up the MCP server, you need the following information from your ReportPortal instance:

VariableDescriptionRequired
RP_API_TOKENCredential the server authenticates with.Yes
RP_HOSTEndpoint or connection string the server talks to.Optional
RP_PROJECTConfiguration value read at startup.Optional

Frequently asked questions

You need the ReportPortal instance URL (`RP_HOST`), an API token (`RP_API_TOKEN`), and optionally the project key (`RP_PROJECT`). The project key is the unique project identifier from the ReportPortal settings page, not the display name.