Rote API & MCP Server
Rote exposes compliance analysis via MCP (Model Context Protocol). Connect any MCP-compatible client to run compliance analysis programmatically.
Get accessMCP tool functions
Execute a single compliance control assessment using Rote's analysis engine.
{
"control_id": "164.312(a)(1)",
"status": "partial",
"reasoning": "Access control policy exists but lacks emergency access procedures",
"confidence": 0.78
} Extract relevant evidence from an uploaded document for a specific control.
{
"evidence": "Section 4.2: All ePHI stored on company servers is encrypted using AES-256...",
"source": "document-abc-123"
} List or search supported compliance frameworks in the Rote knowledge base.
[
{ "id": "hipaa-security", "name": "HIPAA Security Rule" },
{ "id": "hipaa-privacy", "name": "HIPAA Privacy Rule" }
] Execute a clause-by-clause BAA analysis against HIPAA requirements.
{
"baa_id": "baa-vendor-xyz",
"overall_status": "deficient",
"provisions_assessed": 9,
"compliant": 5,
"deficient": 3,
"missing": 1
} Structured data access
Resources provide read access to Rote's compliance data via structured URIs.
compliance://frameworks/{framework_id}Retrieve detailed specifications and control lists for a compliance framework
compliance://analyses/{analysis_id}Retrieve formatted results of a completed compliance analysis
compliance://documents/{document_id}Retrieve metadata and full text of an uploaded compliance document
compliance://controls/{framework_id}/{control_code}Retrieve detailed specification for a specific control within a framework
Run Rote locally via Docker Compose
Clone the platform and start the MCP server on your own infrastructure.
# Clone and start the platform git clone https://github.com/Rote-Compliance/rote-compliance-platform.git cd rote-compliance-platform docker-compose up --build # MCP server available at: # http://localhost:8000/mcp/sse # Connect from any MCP client: claude mcp add rote http://localhost:8000/mcp/sse
No Docker. No infrastructure.
Managed MCP hosting is in development. Early access users will be first. Start a free trial to get on the list.