Skip to content
VS Code

InnoDay for VS Code

io.github.havilandsoftware/mcp-server-innoday

Unified ticketing MCP server for Jira, Linear, Trello, Notion, and GitHub Issues.

client:VS Code transport:stdio runtime:pypi

Install InnoDay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "innoday-api-url",
      "description": "INNODAY_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "innoday-organization-id",
      "description": "INNODAY_ORGANIZATION_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-innoday": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "innoday"
      ],
      "env": {
        "INNODAY_API_URL": "${input:innoday-api-url}",
        "INNODAY_ORGANIZATION_ID": "${input:innoday-organization-id}"
      }
    }
  }
}

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

InnoDay in other clients