Skip to content
VS Code

apexapi mcp for VS Code

io.github.apexapi/apexapi-mcp

Call 120+ AI models and live web context (scrape/crawl/extract) from any MCP client with one key

client:VS Code transport:stdio runtime:npm

Install apexapi mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apexapi-api-key",
      "description": "APEXAPI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "apexapi-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "apexapi-mcp"
      ],
      "env": {
        "APEXAPI_API_KEY": "${input:apexapi-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

apexapi mcp in other clients