Skip to content
VS Code

MIAPI — Grounded Web Answers for VS Code

uk.miapi/miapi

Web search and AI answers with real source citations and a confidence score.

client:VS Code transport:stdio runtime:pypi

Install MIAPI — Grounded Web Answers in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "miapi-api-key",
      "description": "MIAPI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "miapi": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "miapi-sdk"
      ],
      "env": {
        "MIAPI_API_KEY": "${input:miapi-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

MIAPI — Grounded Web Answers in other clients