Skip to content
VS Code

mcp server polarion for VS Code

io.github.devemberx/mcp-server-polarion

MCP server for Polarion ALM — read and write documents and work items

client:VS Code transport:stdio runtime:pypi

Install mcp server polarion in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "polarion-url",
      "description": "POLARION_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "polarion-token",
      "description": "POLARION_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "polarion-max-requests-per-second",
      "description": "POLARION_MAX_REQUESTS_PER_SECOND",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-polarion": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-polarion"
      ],
      "env": {
        "POLARION_URL": "${input:polarion-url}",
        "POLARION_TOKEN": "${input:polarion-token}",
        "POLARION_MAX_REQUESTS_PER_SECOND": "${input:polarion-max-requests-per-second}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp server polarion in other clients