Skip to content
VS Code

mcp correios for VS Code

io.github.codespar/mcp-correios

MCP server for Correios — package tracking, shipping rates, CEP lookup

client:VS Code transport:stdio runtime:npm

Install mcp correios in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "correios-token",
      "description": "CORREIOS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-correios": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-correios"
      ],
      "env": {
        "CORREIOS_TOKEN": "${input:correios-token}"
      }
    }
  }
}

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

mcp correios in other clients