Skip to content
VS Code

IntakeQ MCP for VS Code

io.github.oktopeak/intakeq-mcp

IntakeQ/PracticeQ MCP connector with HIPAA §164.312(b) audit logging on every PHI read/write

client:VS Code transport:stdio runtime:npm

Install IntakeQ MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "intakeq-api-key",
      "description": "INTAKEQ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "intakeq-api-base",
      "description": "INTAKEQ_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-api-key",
      "description": "MCP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-allow-no-auth",
      "description": "MCP_ALLOW_NO_AUTH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "transport",
      "description": "TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-base-url",
      "description": "MCP_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    }
  ],
  "servers": {
    "intakeq-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@oktopeak/intakeq-mcp"
      ],
      "env": {
        "INTAKEQ_API_KEY": "${input:intakeq-api-key}",
        "INTAKEQ_API_BASE": "${input:intakeq-api-base}",
        "MCP_API_KEY": "${input:mcp-api-key}",
        "MCP_ALLOW_NO_AUTH": "${input:mcp-allow-no-auth}",
        "TRANSPORT": "${input:transport}",
        "MCP_BASE_URL": "${input:mcp-base-url}",
        "PORT": "${input:port}"
      }
    }
  }
}

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

IntakeQ MCP in other clients