mcp-server-polarion
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-polarionlist work items in project 'MyProject' where status is 'open'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-polarion
A Model Context Protocol (MCP) server for Polarion ALM. Lets AI assistants read documents, work items, and traceability links — and create, update, and reorganize work items — directly from your Polarion instance.
Prerequisites
Polarion 2506 or higher is required. Earlier versions lack REST API endpoints this server depends on.
This server is distributed as a Python package and requires uv to run.
Install uv (if not already installed):
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Or via pip:
pip install uvNo other installation is needed — uvx mcp-server-polarion downloads and runs the server automatically.
Setup
Environment Variables
Variable | Description | Example |
| Base URL of your Polarion instance |
|
| Personal Access Token for authentication |
|
| Verify TLS certificates (default |
|
MCP client
envobjects must use string values, so booleans are quoted (e.g."POLARION_VERIFY_SSL": "true"). The server parses"true"/"false"into a realbool.
Add to .vscode/mcp.json:
{
"servers": {
"mcp-server-polarion": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-server-polarion"],
"env": {
"POLARION_URL": "https://polarion.example.com",
"POLARION_TOKEN": "your-personal-access-token",
"POLARION_VERIFY_SSL": "true"
}
}
}
}Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-polarion": {
"command": "uvx",
"args": ["mcp-server-polarion"],
"env": {
"POLARION_URL": "https://polarion.example.com",
"POLARION_TOKEN": "your-personal-access-token",
"POLARION_VERIFY_SSL": "true"
}
}
}
}Add to Cursor MCP settings:
{
"mcpServers": {
"mcp-server-polarion": {
"command": "uvx",
"args": ["mcp-server-polarion"],
"env": {
"POLARION_URL": "https://polarion.example.com",
"POLARION_TOKEN": "your-personal-access-token",
"POLARION_VERIFY_SSL": "true"
}
}
}
}Register via the claude mcp add command:
claude mcp add mcp-server-polarion \
-e POLARION_URL=https://polarion.example.com \
-e POLARION_TOKEN=your-personal-access-token \
-e POLARION_VERIFY_SSL=true \
-- uvx mcp-server-polarionTools
Read
Tool | Description |
| List accessible projects |
| List documents in a project |
| Search work items with Lucene or SQL queries |
| Get document metadata, optionally with the raw body HTML |
| Render a document end-to-end as Markdown |
| List a document's structural parts with embedded work item metadata |
| Get work item details with the body as raw HTML |
| Get work item details with the body as Markdown |
| List a work item's outgoing or incoming links |
| List a document's comments with thread relationships |
| Resolve valid enum ids for a document field |
| Resolve valid enum ids for a work item field |
All list tools support pagination via page_size (1–100) and page_number parameters.
Write
Tool | Description |
| Create a new work item |
| Update an existing work item |
| Create a new document |
| Update document metadata, body, or workflow status |
| Create one or more outgoing links from a source work item |
| Update |
| Delete one or more outgoing links from a source work item |
| Attach a work item to a document at a chosen position |
| Detach a work item from its document |
| Add one or more comments or replies to a document |
| Resolve or re-open a document comment |
Example Prompts
"List the documents in space 'Specifications' of project MCPT."
"Read the SRS document of project MCPT and summarize each open requirement."
"Find every approved requirement in project MCPT whose title starts with 'Auth' and show me their owning document."
"Show the outgoing and incoming links for MCPT-042 and flag any child task that is still open."
"Which requirements in the SRS document have no 'verifies' back link from a test case?"
"List the valid status values for a defect in project MCPT, then move MCPT-077 to 'in_review'."
"Create a task in project MCPT titled 'Refactor authentication module' and link it to MCPT-042 as 'relates_to'."
"Add a new requirement under section 3.2 of the SRS document with the body I just drafted."
"Move MCPT-201 into the SRS document right after MCPT-150."
"Detach MCPT-077 from its document so I can rework it as a standalone task."
"Bump MCPT-042's priority to 90, set severity to 'major', and approve the workflow."
License
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devemberx/mcp-server-polarion'
If you have feedback or need assistance with the MCP directory API, please join our Discord server