Polarion MCP Server

Polarion MCP Server

A TypeScript MCP server that turns the Polarion ALM REST API into a tool-based interface for AI assistants.

Category
Visit Server

README

Polarion MCP Server

CI License: MIT Node.js >= 20

A TypeScript MCP (Model Context Protocol) server that turns the Polarion ALM REST API into a tool-based interface for AI assistants — Claude Code, Claude Desktop, VS Code (GitHub Copilot), and any other MCP-aware client. It also ships an optional HTTP wrapper so HTTP-only clients such as ChatGPT Custom GPTs can call the same tools.

šŸ™ Thanks to @Jonasdero, whose work is the foundation this MCP server builds on.

Note: Independent, community open-source project. Not affiliated with or endorsed by Siemens / Polarion. "Polarion" is a trademark of Siemens. Polarion SDK/help PDFs are not bundled — see sdk/README.md.

What you get

Three transports, one shared tool set (~210 Polarion REST operations):

  • stdio MCP — for local clients that launch the server as a subprocess (Claude Code, Claude Desktop, VS Code).
  • Streamable HTTP MCP (/mcp) — a real remote MCP endpoint for clients that connect by URL, such as Claude.ai custom connectors.
  • REST HTTP wrapper — a plain REST surface for ChatGPT Custom GPT Actions.

Plus Polarion-specific extras: cached project configuration, SDK documentation access, and guided prompts for creating/searching/updating work items.

Contents

Prerequisites

  • Node.js 20+ and npm
  • Access to a Polarion instance with the REST API enabled
  • A Polarion Personal Access Token (see below)

Get a Polarion token

Set BEARER_TOKEN to a Polarion Personal Access Token:

  1. Sign in to your Polarion instance.
  2. Open your user profile / personal settings.
  3. Find the Personal Access Token section.
  4. Create a token with the minimum scope your workflow needs.
  5. Copy it once and store it in your MCP client config (or .env).

If your instance does not show Personal Access Tokens, the feature may be disabled — contact your Polarion administrator.

Build it once

All local (stdio) integrations use the compiled build/index.js. Clone and build first:

git clone https://github.com/phillipboesger/polarion-mcp.git
cd polarion-mcp
npm install      # installs deps and builds (via the prepare script)
npm run build    # (re)build explicitly if needed

Note the absolute path to build/index.js — you will paste it into each client config below. Get it with:

echo "$(pwd)/build/index.js"

Two environment variables are required for every client:

  • API_BASE_URL — e.g. https://your-polarion-server/polarion/rest/v1
  • BEARER_TOKEN — your Polarion Personal Access Token

For internal servers with a self-signed certificate, also set NODE_TLS_REJECT_UNAUTHORIZED=0.

Install in your AI client

Claude Code (CLI)

Use the claude mcp add command (replace the path and values):

claude mcp add polarion \
  -e API_BASE_URL=https://your-polarion-server/polarion/rest/v1 \
  -e BEARER_TOKEN=your-polarion-personal-access-token \
  -- node /absolute/path/to/polarion-mcp/build/index.js

Then verify:

claude mcp list

To scope the server to one project only, run the command from that project directory (Claude Code stores it in the project's local config), or add --scope user to make it available everywhere.

Claude Desktop

Edit the Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "polarion": {
      "command": "node",
      "args": ["/absolute/path/to/polarion-mcp/build/index.js"],
      "env": {
        "API_BASE_URL": "https://your-polarion-server/polarion/rest/v1",
        "BEARER_TOKEN": "your-polarion-personal-access-token"
      }
    }
  }
}

Restart Claude Desktop. The Polarion tools appear under the šŸ”Œ (connectors) icon.

VS Code (GitHub Copilot)

VS Code runs MCP servers in Copilot agent mode. Create .vscode/mcp.json in your workspace (or add the same block to your user settings.json under "mcp"):

{
  "servers": {
    "polarion": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/polarion-mcp/build/index.js"],
      "env": {
        "API_BASE_URL": "https://your-polarion-server/polarion/rest/v1",
        "BEARER_TOKEN": "your-polarion-personal-access-token"
      }
    }
  }
}

Open the Chat view, switch to Agent mode, and start the polarion server from the tools picker. You can run several entries (e.g. polarion-sim, polarion-dev) with different API_BASE_URL/BEARER_TOKEN values to target multiple environments.

ChatGPT (Custom GPT)

ChatGPT cannot launch a local MCP server, so use the HTTP wrapper and wire it up as a Custom GPT Action.

  1. Deploy the HTTP server (see Run with Docker or docs/deployment.md) with API_BASE_URL, BEARER_TOKEN, and a generated HTTP_API_KEY:

    bash scripts/generate-api-key.sh   # prints a secure HTTP_API_KEY
    npm run start:http
    
  2. In ChatGPT → Create a GPT → Configure → Actions → Import from URL, point at your deployment's /openapi-gpt.json (a Custom-GPT-friendly spec limited to 30 operations).

  3. Set Authentication → API Key → Bearer, and paste the HTTP_API_KEY value.

  4. Save. The GPT can now call the Polarion tools over HTTPS.

The full /openapi.json (all ~210 operations) is also available, but exceeds the 30-action Custom GPT limit — use /openapi-gpt.json there.

Claude.ai (web)

Claude.ai (Pro/Max/Team/Enterprise) supports custom connectors — remote MCP servers reached over HTTPS. This repo ships a real Streamable HTTP MCP transport for exactly this.

  1. Generate a token and start the MCP HTTP server (host it behind HTTPS — see Run with Docker and docs/deployment.md):

    export MCP_HTTP_TOKEN="$(openssl rand -hex 32)"
    export API_BASE_URL="https://your-polarion-server/polarion/rest/v1"
    export BEARER_TOKEN="your-polarion-personal-access-token"
    export MCP_ALLOWED_HOSTS="mcp.example.com"   # optional: DNS-rebinding protection
    npm run start:mcp-http                        # serves POST/GET/DELETE /mcp
    
  2. Expose it publicly over HTTPS, e.g. https://mcp.example.com/mcp.

  3. In Claude.ai → Settings → Connectors → Add custom connector, enter the /mcp URL.

  4. Auth: the endpoint always requires Authorization: Bearer <MCP_HTTP_TOKEN> (the server refuses to start without MCP_HTTP_TOKEN). If the Claude.ai connector dialog cannot send a static bearer header for your plan, front the server with an OAuth-capable proxy or restrict it at the network layer.

Prefer no hosting? Claude Desktop (above) uses the same Claude account over local stdio and needs no public endpoint.

Run with Docker

Build the image:

docker build -t polarion-mcp .

HTTP mode (default command — for ChatGPT / hosted use):

docker run --rm -p 3000:3000 \
  -e API_BASE_URL="https://your-polarion-server/polarion/rest/v1" \
  -e BEARER_TOKEN="your-polarion-personal-access-token" \
  -e HTTP_API_KEY="your-generated-http-key" \
  polarion-mcp

Streamable HTTP MCP mode — for Claude.ai (override the command):

docker run --rm -p 3000:3000 \
  -e API_BASE_URL="https://your-polarion-server/polarion/rest/v1" \
  -e BEARER_TOKEN="your-polarion-personal-access-token" \
  -e MCP_HTTP_TOKEN="your-generated-mcp-token" \
  polarion-mcp node build/mcp-http-server.js

stdio MCP mode (override the command):

docker run --rm -i \
  -e API_BASE_URL="https://your-polarion-server/polarion/rest/v1" \
  -e BEARER_TOKEN="your-polarion-personal-access-token" \
  polarion-mcp node build/index.js

Endpoints — Streamable HTTP MCP: POST/GET/DELETE /mcp (+ GET /health). REST wrapper: GET /health, GET /api/tools, POST /api/tools/:toolName, GET /openapi.json, GET /openapi-gpt.json.

Configuration reference

Variable Required Purpose
API_BASE_URL yes Polarion REST base, e.g. https://host/polarion/rest/v1
BEARER_TOKEN yes Polarion Personal Access Token
MCP_HTTP_TOKEN Streamable HTTP MCP Bearer token required on /mcp (Claude.ai); server won't start without it
MCP_HTTP_PORT no MCP HTTP port (falls back to HTTP_PORT, then 3000)
MCP_ALLOWED_HOSTS no Comma-separated Host allow-list; enables DNS-rebinding protection
HTTP_API_KEY REST HTTP mode Protects the ChatGPT REST wrapper; not the Polarion token
HTTP_PORT no REST HTTP server port (default 3000)
NODE_TLS_REJECT_UNAUTHORIZED no Set to 0 only for trusted internal self-signed servers

Copy .env.example to .env for local development. See docs/configuration.md for advanced per-scheme auth overrides.

Security notes

  • Never commit tokens. .env is gitignored.
  • Keep MCP configs in user-level settings or ignored paths.
  • Use NODE_TLS_REJECT_UNAUTHORIZED=0 only for trusted internal servers.
  • Use a distinct HTTP_API_KEY for the HTTP wrapper — it is not the Polarion bearer token.

Repository layout

Only entry points live at the root; everything else is grouped into folders.

.
ā”œā”€ā”€ README.md            Start here
ā”œā”€ā”€ LICENSE              MIT
ā”œā”€ā”€ package.json         Scripts, dependencies, npm bin
ā”œā”€ā”€ Dockerfile           Container image (all three transports)
ā”œā”€ā”€ render.yaml          Render.com deployment blueprint
ā”œā”€ā”€ tsconfig*.json       TypeScript config (app + tests)
ā”œā”€ā”€ .env.example         Environment variable template
ā”œā”€ā”€ src/                 TypeScript source
│   ā”œā”€ā”€ server.ts            Shared MCP server factory (tools/resources/prompts)
│   ā”œā”€ā”€ index.ts             stdio entry point (local clients)
│   ā”œā”€ā”€ mcp-http-server.ts   Streamable HTTP MCP entry point (Claude.ai)
│   ā”œā”€ā”€ http-server.ts       REST wrapper entry point (ChatGPT)
│   ā”œā”€ā”€ executor.ts          Tool execution + auth against Polarion
│   ā”œā”€ā”€ tools.ts             Generated Polarion tool definitions
│   └── …                    config, polarion, utils, types, auth, gpt-tools
ā”œā”€ā”€ tests/               Node.js test suite
ā”œā”€ā”€ docs/                Full documentation (see docs/README.md index)
ā”œā”€ā”€ scripts/             Maintainer helpers (codegen patch, API-key generator)
ā”œā”€ā”€ sdk/                 Optional local Polarion PDFs (not bundled; see sdk/README.md)
└── .github/             CI workflow + CONTRIBUTING.md

Detailed map: docs/repository-overview.md.

Polarion version support

The tool set (src/tools.ts) is generated from a Polarion OpenAPI definition, so it tracks whichever spec you last generated from. The REST path /polarion/rest/v1 is stable across releases; newer Polarion versions mainly add endpoints, which a regeneration picks up — there is no continuous maintenance, only an occasional refresh when you move to a newer version.

  • Default source: the public Polarion demo spec (always reasonably current).
  • Refresh: run the Update Polarion tools GitHub Action (it regenerates, tests, and opens a PR), or locally npm run regenerate (optionally SPEC_URL=… BEARER_TOKEN=… npm run regenerate for a specific instance/version).

Details: docs/polarion-versioning.md and docs/openapi-and-generation.md.

Documentation

See docs/README.md for architecture, features, workflows, configuration, deployment, security, and troubleshooting guides. A worked end-to-end example lives in docs/example-task.md.

Contributing

Contributions welcome — see CONTRIBUTING.md.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured