Skip to content
VS Code

Liquid for VS Code

io.github.ertad-family/liquid

Connect your AI agent to anything — APIs, databases, and agents; read and write, auto-discovered.

client:VS Code transport:stdio runtime:pypi

Install Liquid in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openai-base-url",
      "description": "OPENAI_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "liquid-allow-writes",
      "description": "LIQUID_ALLOW_WRITES",
      "password": true
    }
  ],
  "servers": {
    "liquid": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "liquid-mcp"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "OPENAI_BASE_URL": "${input:openai-base-url}",
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "LIQUID_ALLOW_WRITES": "${input:liquid-allow-writes}"
      }
    }
  }
}

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

Liquid in other clients