Skip to content
VS Code

Calypso Multimodal RAG MCP for VS Code

io.github.calypso-so/multimodal-rag-mcp-server

Calypso multimodal RAG for grounded answers from docs, images, charts, and knowledge.

client:VS Code transport:stdio runtime:npm

Install Calypso Multimodal RAG MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "calypso-api-key",
      "description": "CALYPSO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "calypso-api-base-url",
      "description": "CALYPSO_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "multimodal-rag-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@calypsohq/multimodal-rag-mcp-server"
      ],
      "env": {
        "CALYPSO_API_KEY": "${input:calypso-api-key}",
        "CALYPSO_API_BASE_URL": "${input:calypso-api-base-url}"
      }
    }
  }
}

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

Calypso Multimodal RAG MCP in other clients