Skip to content
VS Code

cli for VS Code

dev.kanta/cli

Kanta Verify, Find, and Database: email verification, email finding, and B2B contact search.

client:VS Code transport:stdio runtime:npm

Install cli in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kanta-api-key",
      "description": "KANTA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kanta-base-url",
      "description": "KANTA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kanta-db-url",
      "description": "KANTA_DB_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kanta-profile",
      "description": "KANTA_PROFILE",
      "password": true
    }
  ],
  "servers": {
    "cli": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@kantadev/cli"
      ],
      "env": {
        "KANTA_API_KEY": "${input:kanta-api-key}",
        "KANTA_BASE_URL": "${input:kanta-base-url}",
        "KANTA_DB_URL": "${input:kanta-db-url}",
        "KANTA_PROFILE": "${input:kanta-profile}"
      }
    }
  }
}

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

cli in other clients