PluginBench
MCP Server

com.jamesrosingmd/tebra MCP Server

com.jamesrosingmd/tebra

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_USER
    required

    Tebra SOAP API username

  • TEBRA_SOAP_PASSWORD
    required
    secret

    Tebra SOAP API password

  • TEBRA_CUSTOMER_KEY
    required
    secret

    Tebra 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-server

Related MCP servers

MCP server for Zenoti spa/wellness/medspa — guests, appointments, bookings, invoices

View repository →