Customer-scoped healthcare claim data access via the Model Context Protocol.
This server exposes Recovr's claim, eligibility, discovery, and Optum recon ticket data as MCP tools, resources, and prompts. Connect any MCP-aware client (Claude Desktop, Cursor, VS Code Copilot, Pydantic AI agents, etc.) to the endpoint below using your issued API key.
Capabilities exposed:
firestore_get, firestore_exists,
firestore_list, firestore_query, firestore_count,
firestore_paginate, firestore_list_collections.firestore_write, firestore_write_batch.firestore_archive,
firestore_delete. Unlocked per-session via the
request_delete_permission prompt.recovr://... URIs.skill://... URIs
(e.g. Optum recon ticket dashboards).API keys are issued by a Recovr administrator via the IAM-gated
recovr-mcp-minter service. Contact your account manager
or the engineering team to request a key. You will receive a token of the
form mcp_live_… shown once; store it
securely (e.g. 1Password, secrets-manager) — it
cannot be retrieved later.
read, write, or
destructive. Tools matching scopes you do not hold are hidden
from your session.
This server speaks streamable HTTP. The endpoint is:
https://mcp.paypredict.net/mcp
Authenticate with Authorization: Bearer <YOUR_KEY>.
Edit claude_desktop_config.json:
{
"mcpServers": {
"recovr": {
"type": "http",
"url": "https://mcp.paypredict.net/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}
}
}
Edit .cursor/mcp.json (per-project) or
~/.cursor/mcp.json (global):
{
"mcpServers": {
"recovr": {
"url": "https://mcp.paypredict.net/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}
}
}
Edit .vscode/mcp.json:
{
"servers": {
"recovr": {
"type": "http",
"url": "https://mcp.paypredict.net/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}
}
}
GET /health — liveness probe (no auth required).GET /.well-known/oauth-protected-resource
— OAuth 2.1 protected-resource metadata (RFC 9728).GET /version — service version and build info.GET /docs — full reference (mirrors the
recovr://help MCP resource).Once connected, ask your client to read the recovr://help
resource for the full provider map, then recovr://customer/info
to confirm your scopes.