Skip to content
VS Code

tixxly for VS Code

io.github.teamtixxly/tixxly

Tixxly MCP server — connect AI agents to tours, experiences, and activities

client:VS Code transport:stdio runtime:npm

Install tixxly in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tixxly-api-key",
      "description": "TIXXLY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "tixxly": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tixxly-ai/travel-mcp"
      ],
      "env": {
        "TIXXLY_API_KEY": "${input:tixxly-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

tixxly in other clients