karbon mcp server for VS Code
io.github.mad-man-dan/karbon-mcp-server
Unofficial MCP server for Karbon practice management: contacts, work, time, invoices, payments.
client:VS Code
transport:stdio
runtime:npm
Install karbon mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "karbon-bearer-token",
"description": "KARBON_BEARER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "karbon-access-key",
"description": "KARBON_ACCESS_KEY",
"password": true
},
{
"type": "promptString",
"id": "karbon-read-only",
"description": "KARBON_READ_ONLY",
"password": true
},
{
"type": "promptString",
"id": "karbon-allow-payment-writes",
"description": "KARBON_ALLOW_PAYMENT_WRITES",
"password": true
}
],
"servers": {
"karbon-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"karbon-mcp-server"
],
"env": {
"KARBON_BEARER_TOKEN": "${input:karbon-bearer-token}",
"KARBON_ACCESS_KEY": "${input:karbon-access-key}",
"KARBON_READ_ONLY": "${input:karbon-read-only}",
"KARBON_ALLOW_PAYMENT_WRITES": "${input:karbon-allow-payment-writes}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs