Skip to content
VS Code

mcp hydrolix for VS Code

io.github.hydrolix/mcp-hydrolix

An MCP server to query Hydrolix

client:VS Code transport:stdio runtime:pypi

Install mcp hydrolix in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hydrolix-host",
      "description": "HYDROLIX_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hydrolix-token",
      "description": "HYDROLIX_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hydrolix-user",
      "description": "HYDROLIX_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hydrolix-password",
      "description": "HYDROLIX_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "mcp-hydrolix": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-hydrolix"
      ],
      "env": {
        "HYDROLIX_HOST": "${input:hydrolix-host}",
        "HYDROLIX_TOKEN": "${input:hydrolix-token}",
        "HYDROLIX_USER": "${input:hydrolix-user}",
        "HYDROLIX_PASSWORD": "${input:hydrolix-password}"
      }
    }
  }
}

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

mcp hydrolix in other clients