Skip to content
VS Code

clio mcp for VS Code

io.github.oktopeak/clio-mcp

Connect Claude to Clio: 34 tools for matters, custom fields, notes, documents, folders, billing.

client:VS Code transport:stdio runtime:npm

Install clio mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clio-client-id",
      "description": "CLIO_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clio-client-secret",
      "description": "CLIO_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "encryption-key",
      "description": "ENCRYPTION_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clio-redirect-port",
      "description": "CLIO_REDIRECT_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clio-region",
      "description": "CLIO_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "read-only",
      "description": "READ_ONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clio-api-base",
      "description": "CLIO_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clio-auth-url",
      "description": "CLIO_AUTH_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clio-token-url",
      "description": "CLIO_TOKEN_URL",
      "password": true
    }
  ],
  "servers": {
    "clio-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@oktopeak/clio-mcp"
      ],
      "env": {
        "CLIO_CLIENT_ID": "${input:clio-client-id}",
        "CLIO_CLIENT_SECRET": "${input:clio-client-secret}",
        "ENCRYPTION_KEY": "${input:encryption-key}",
        "CLIO_REDIRECT_PORT": "${input:clio-redirect-port}",
        "CLIO_REGION": "${input:clio-region}",
        "READ_ONLY": "${input:read-only}",
        "CLIO_API_BASE": "${input:clio-api-base}",
        "CLIO_AUTH_URL": "${input:clio-auth-url}",
        "CLIO_TOKEN_URL": "${input:clio-token-url}"
      }
    }
  }
}

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

clio mcp in other clients