mycase mcp for VS Code
io.github.oktopeak/mycase-mcp
Connect Claude to MyCase: cases, contacts, documents, tasks, calendar, calls, time, billing, staff.
client:VS Code
transport:stdio
runtime:npm
Install mycase mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mycase-client-id",
"description": "MYCASE_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "mycase-client-secret",
"description": "MYCASE_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "encryption-key",
"description": "ENCRYPTION_KEY",
"password": true
},
{
"type": "promptString",
"id": "mycase-redirect-port",
"description": "MYCASE_REDIRECT_PORT",
"password": true
},
{
"type": "promptString",
"id": "mycase-experimental-tools",
"description": "MYCASE_EXPERIMENTAL_TOOLS",
"password": true
}
],
"servers": {
"mycase-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@oktopeak/mycase-mcp"
],
"env": {
"MYCASE_CLIENT_ID": "${input:mycase-client-id}",
"MYCASE_CLIENT_SECRET": "${input:mycase-client-secret}",
"ENCRYPTION_KEY": "${input:encryption-key}",
"MYCASE_REDIRECT_PORT": "${input:mycase-redirect-port}",
"MYCASE_EXPERIMENTAL_TOOLS": "${input:mycase-experimental-tools}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs