tebra for VS Code
com.jamesrosingmd/tebra
MCP server for Tebra/Kareo practice management — patients, billing, scheduling, FHIR (45 tools)
client:VS Code
transport:stdio
runtime:npm
Install tebra in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tebra-soap-user",
"description": "TEBRA_SOAP_USER",
"password": true
},
{
"type": "promptString",
"id": "tebra-soap-password",
"description": "TEBRA_SOAP_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "tebra-customer-key",
"description": "TEBRA_CUSTOMER_KEY",
"password": true
}
],
"servers": {
"tebra": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tebra-mcp-server"
],
"env": {
"TEBRA_SOAP_USER": "${input:tebra-soap-user}",
"TEBRA_SOAP_PASSWORD": "${input:tebra-soap-password}",
"TEBRA_CUSTOMER_KEY": "${input:tebra-customer-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs