Skip to content
VS Code

filevine mcp for VS Code

io.github.oktopeak/filevine-mcp

Open-source MCP server connecting Claude to Filevine practice management. Built by Oktopeak.

client:VS Code transport:stdio runtime:npm

Install filevine mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "filevine-client-id",
      "description": "FILEVINE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "filevine-client-secret",
      "description": "FILEVINE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "filevine-pat",
      "description": "FILEVINE_PAT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "filevine-region",
      "description": "FILEVINE_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "encryption-key",
      "description": "ENCRYPTION_KEY",
      "password": true
    }
  ],
  "servers": {
    "filevine-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@oktopeak/filevine-mcp"
      ],
      "env": {
        "FILEVINE_CLIENT_ID": "${input:filevine-client-id}",
        "FILEVINE_CLIENT_SECRET": "${input:filevine-client-secret}",
        "FILEVINE_PAT": "${input:filevine-pat}",
        "FILEVINE_REGION": "${input:filevine-region}",
        "ENCRYPTION_KEY": "${input:encryption-key}"
      }
    }
  }
}

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

filevine mcp in other clients