Skip to content
VS Code

apiany mcp for VS Code

io.github.ailingqu/apiany-mcp

APIAny MCP server for model discovery, pricing, docs, and integration examples.

client:VS Code transport:stdio runtime:npm

Install apiany mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apiany-base-url",
      "description": "APIANY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apiany-api-key",
      "description": "APIANY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "apiany-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@apiany-ai/mcp"
      ],
      "env": {
        "APIANY_BASE_URL": "${input:apiany-base-url}",
        "APIANY_API_KEY": "${input:apiany-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

apiany mcp in other clients