Skip to content
VS Code

ship24 tracking for VS Code

io.github.ship24-official/ship24-tracking

Track any parcel by tracking number — real-time status, event history, and carrier detection.

client:VS Code transport:stdio runtime:npm

Install ship24 tracking in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ship24-api-key",
      "description": "SHIP24_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "plan-per-shipment",
      "description": "PLAN_PER_SHIPMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "plan-per-call",
      "description": "PLAN_PER_CALL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ship24-base-url",
      "description": "SHIP24_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "request-timeout-ms",
      "description": "REQUEST_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "couriers-cache-ttl-hours",
      "description": "COURIERS_CACHE_TTL_HOURS",
      "password": true
    }
  ],
  "servers": {
    "ship24-tracking": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ship24-tracking-mcp"
      ],
      "env": {
        "SHIP24_API_KEY": "${input:ship24-api-key}",
        "PLAN_PER_SHIPMENT": "${input:plan-per-shipment}",
        "PLAN_PER_CALL": "${input:plan-per-call}",
        "SHIP24_BASE_URL": "${input:ship24-base-url}",
        "REQUEST_TIMEOUT_MS": "${input:request-timeout-ms}",
        "COURIERS_CACHE_TTL_HOURS": "${input:couriers-cache-ttl-hours}"
      }
    }
  }
}

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

ship24 tracking in other clients