Skip to content
VS Code

IPCC AR6 Climate Retrieval for VS Code

io.github.aswanisahoo/climate-ipcc-rag

Search IPCC AR6 WG1 and answer with page-level citations, or refuse when unsupported.

client:VS Code transport:stdio runtime:oci

Install IPCC AR6 Climate Retrieval in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-genai-use-vertexai",
      "description": "GOOGLE_GENAI_USE_VERTEXAI",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-cloud-project",
      "description": "GOOGLE_CLOUD_PROJECT",
      "password": true
    }
  ],
  "servers": {
    "climate-ipcc-rag": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/aswanisahoo/climate-ipcc-rag-mcp:0.1.0"
      ],
      "env": {
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "GOOGLE_GENAI_USE_VERTEXAI": "${input:google-genai-use-vertexai}",
        "GOOGLE_CLOUD_PROJECT": "${input:google-cloud-project}"
      }
    }
  }
}

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

IPCC AR6 Climate Retrieval in other clients