Skip to content
VS Code

novaposhta for VS Code

io.github.shopanaio/novaposhta

MCP Server for Nova Poshta API integration with AI assistants

client:VS Code transport:stdio runtime:npm

Install novaposhta in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nova-poshta-api-key",
      "description": "NOVA_POSHTA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nova-poshta-system",
      "description": "NOVA_POSHTA_SYSTEM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "novaposhta": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@shopana/novaposhta-mcp-server"
      ],
      "env": {
        "NOVA_POSHTA_API_KEY": "${input:nova-poshta-api-key}",
        "NOVA_POSHTA_SYSTEM": "${input:nova-poshta-system}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

novaposhta in other clients