Skip to content
VS Code

byteplant mcp for VS Code

io.github.byteplant-dev/byteplant-mcp

An MCP server that provides Email, Phone and Address Validation Services from Byteplant

client:VS Code transport:stdio runtime:pypi

Install byteplant mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ev-token",
      "description": "EV_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "av-token",
      "description": "AV_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pv-token",
      "description": "PV_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "byteplant-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "byteplant-mcp"
      ],
      "env": {
        "EV_TOKEN": "${input:ev-token}",
        "AV_TOKEN": "${input:av-token}",
        "PV_TOKEN": "${input:pv-token}"
      }
    }
  }
}

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

byteplant mcp in other clients