@striderlabs/mcp-teladoc
MCP server connector for Teladoc telehealth platform. Enable AI agents to search providers, book virtual appointments, manage prescriptions, and message healthcare providers.
Installation
npx @striderlabs/mcp-teladoc
Or install globally:
npm install -g @striderlabs/mcp-teladoc
Configuration
Set environment variables:
export TELADOC_EMAIL="your-email@example.com"
export TELADOC_PASSWORD="your-password"
export TELADOC_HEADLESS="true" # optional, defaults to true
Tools
| Tool | Description |
|---|---|
search_providers | Search Teladoc providers by specialty, condition, gender, or language |
get_provider_details | Get detailed information about a specific provider |
list_appointments | List upcoming and past appointments |
book_appointment | Book a new virtual appointment |
cancel_appointment | Cancel an existing appointment |
get_prescriptions | View prescription history |
send_message | Send secure message to your provider |
get_visit_history | Get past visit summaries |
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"teladoc": {
"command": "npx",
"args": ["@striderlabs/mcp-teladoc"],
"env": {
"TELADOC_EMAIL": "your-email@example.com",
"TELADOC_PASSWORD": "your-password"
}
}
}
}
License
MIT