Skip to content
VS Code

mcp tomticket for VS Code

io.github.glira/mcp-tomticket

TomTicket helpdesk MCP: tickets, replies, time, customers, chats, and KB

client:VS Code transport:stdio runtime:npm

Install mcp tomticket in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tomticket-token",
      "description": "TOMTICKET_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tomticket-base-url",
      "description": "TOMTICKET_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-tomticket": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-tomticket"
      ],
      "env": {
        "TOMTICKET_TOKEN": "${input:tomticket-token}",
        "TOMTICKET_BASE_URL": "${input:tomticket-base-url}"
      }
    }
  }
}

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

mcp tomticket in other clients