What is the com.jamesrosingmd/tebra MCP server?
MCP server for Tebra/Kareo practice management — patients, billing, scheduling, FHIR (45 tools)
How to install com.jamesrosingmd/tebra
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
TEBRA_SOAP_USERrequiredTebra SOAP API username
TEBRA_SOAP_PASSWORDrequiredsecretTebra SOAP API password
TEBRA_CUSTOMER_KEYrequiredsecretTebra customer key (per-practice identifier)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"tebra": {
"command": "npx",
"args": [
"-y",
"tebra-mcp-server"
],
"env": {
"TEBRA_SOAP_USER": "<YOUR_TEBRA_SOAP_USER>",
"TEBRA_SOAP_PASSWORD": "<YOUR_TEBRA_SOAP_PASSWORD>",
"TEBRA_CUSTOMER_KEY": "<YOUR_TEBRA_CUSTOMER_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"tebra": {
"command": "npx",
"args": [
"-y",
"tebra-mcp-server"
],
"env": {
"TEBRA_SOAP_USER": "<YOUR_TEBRA_SOAP_USER>",
"TEBRA_SOAP_PASSWORD": "<YOUR_TEBRA_SOAP_PASSWORD>",
"TEBRA_CUSTOMER_KEY": "<YOUR_TEBRA_CUSTOMER_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"tebra": {
"command": "npx",
"args": [
"-y",
"tebra-mcp-server"
],
"env": {
"TEBRA_SOAP_USER": "<YOUR_TEBRA_SOAP_USER>",
"TEBRA_SOAP_PASSWORD": "<YOUR_TEBRA_SOAP_PASSWORD>",
"TEBRA_CUSTOMER_KEY": "<YOUR_TEBRA_CUSTOMER_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"tebra": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tebra-mcp-server"
],
"env": {
"TEBRA_SOAP_USER": "<YOUR_TEBRA_SOAP_USER>",
"TEBRA_SOAP_PASSWORD": "<YOUR_TEBRA_SOAP_PASSWORD>",
"TEBRA_CUSTOMER_KEY": "<YOUR_TEBRA_CUSTOMER_KEY>"
}
}
}
}Claude Code
claude mcp add tebra --env TEBRA_SOAP_USER=<YOUR_TEBRA_SOAP_USER> --env TEBRA_SOAP_PASSWORD=<YOUR_TEBRA_SOAP_PASSWORD> --env TEBRA_CUSTOMER_KEY=<YOUR_TEBRA_CUSTOMER_KEY> -- npx -y tebra-mcp-serverRelated MCP servers
MCP server for Zenoti spa/wellness/medspa — guests, appointments, bookings, invoices
View repository →