Skip to content
VS Code

Apixies Developer API Suite for VS Code

io.apixies/mcp-server

50 developer utility APIs as tools: SSL, DNS, WHOIS, email checks, HTML to PDF, sitemaps and more.

client:VS Code transport:stdio runtime:npm

Install Apixies Developer API Suite in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apixies-api-key",
      "description": "APIXIES_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@apixies/mcp-server"
      ],
      "env": {
        "APIXIES_API_KEY": "${input:apixies-api-key}"
      }
    }
  }
}

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

Apixies Developer API Suite in other clients