Skip to content
VS Code

mcp server spira for VS Code

io.github.inflectra/mcp-server-spira

A Model Context Protocol (MCP) server enabling AI assistants to interact with Spira by Inflectra.

client:VS Code transport:stdio runtime:pypi

Install mcp server spira in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "inflectra-spira-base-url",
      "description": "INFLECTRA_SPIRA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "inflectra-spira-username",
      "description": "INFLECTRA_SPIRA_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "inflectra-spira-api-key",
      "description": "INFLECTRA_SPIRA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-spira": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-spira"
      ],
      "env": {
        "INFLECTRA_SPIRA_BASE_URL": "${input:inflectra-spira-base-url}",
        "INFLECTRA_SPIRA_USERNAME": "${input:inflectra-spira-username}",
        "INFLECTRA_SPIRA_API_KEY": "${input:inflectra-spira-api-key}"
      }
    }
  }
}

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 spira in other clients