Skip to main content

API Reference

Complete API reference for the Juro Compliance Platform. Access all MCP tools, endpoints, and integration methods.

MCP Tools

Model Context Protocol tools for AI agent integration:

Quick Start

Basic API Usage

// Connect to Juro MCP Server
const client = new MCPClient('localhost', 3000);

// Scan directory for compliance
const result = await client.callTool('scan_directory', {
  path: './my-project',
  regulations: ['GDPR', 'SOC2']
});

console.log(result.violations);

Available Tools

Compliance Scanning

Scan directories and files for compliance violations

  • scan_directory
  • scan_file
  • get_scan_results

Rule Management

Manage compliance rules and regulations

  • list_rules
  • get_rule_details
  • validate_rule

AI Agent Integration

Advanced AI-powered compliance analysis and natural language processing:

  • Natural Language Queries - Ask questions about your code in plain English
  • Intelligent Analysis - AI-powered code analysis and suggestions
  • Auto-Discovery - Automatically detect project types and regulations
  • Learning System - AI learns from your feedback and improves over time

Get Started

Ready to integrate with Juro? Check out our installation guide and code examples.