Skip to content
VS Code

ShipSaving for VS Code

io.github.waka4674/shipsaving-mcp

MCP server for ShipSaving — shipping rates, labels, orders, tracking

client:VS Code transport:stdio runtime:npm

Install ShipSaving in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shipsaving-app-key",
      "description": "SHIPSAVING_APP_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shipsaving-api-base-url",
      "description": "SHIPSAVING_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "shipsaving-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "shipsaving-mcp"
      ],
      "env": {
        "SHIPSAVING_APP_KEY": "${input:shipsaving-app-key}",
        "SHIPSAVING_API_BASE_URL": "${input:shipsaving-api-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

ShipSaving in other clients