Skip to content
VS Code

mcp server for VS Code

io.github.icedq-tools/mcp-server

MCP Server for iceDQ Data Reliability Platform

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "icedq-base-url",
      "description": "ICEDQ_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icedq-realm",
      "description": "ICEDQ_REALM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icedq-client-id",
      "description": "ICEDQ_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-type",
      "description": "AUTH_TYPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icedq-client-secret",
      "description": "ICEDQ_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icedq-username",
      "description": "ICEDQ_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icedq-password",
      "description": "ICEDQ_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tokens-path",
      "description": "TOKENS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icedq-org-id",
      "description": "ICEDQ_ORG_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verify-ssl",
      "description": "VERIFY_SSL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "request-timeout",
      "description": "REQUEST_TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@icedq/mcp-server"
      ],
      "env": {
        "ICEDQ_BASE_URL": "${input:icedq-base-url}",
        "ICEDQ_REALM": "${input:icedq-realm}",
        "ICEDQ_CLIENT_ID": "${input:icedq-client-id}",
        "AUTH_TYPE": "${input:auth-type}",
        "ICEDQ_CLIENT_SECRET": "${input:icedq-client-secret}",
        "ICEDQ_USERNAME": "${input:icedq-username}",
        "ICEDQ_PASSWORD": "${input:icedq-password}",
        "TOKENS_PATH": "${input:tokens-path}",
        "ICEDQ_ORG_ID": "${input:icedq-org-id}",
        "VERIFY_SSL": "${input:verify-ssl}",
        "REQUEST_TIMEOUT": "${input:request-timeout}"
      }
    }
  }
}

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

mcp server in other clients