Skip to content
VS Code

mcp andreani for VS Code

io.github.codespar/mcp-andreani

Andreani — Argentine courier and logistics

client:VS Code transport:stdio runtime:npm

Install mcp andreani in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "andreani-api-key",
      "description": "ANDREANI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "andreani-user",
      "description": "ANDREANI_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "andreani-password",
      "description": "ANDREANI_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "mcp-andreani": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-andreani"
      ],
      "env": {
        "ANDREANI_API_KEY": "${input:andreani-api-key}",
        "ANDREANI_USER": "${input:andreani-user}",
        "ANDREANI_PASSWORD": "${input:andreani-password}"
      }
    }
  }
}

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

mcp andreani in other clients