Tools: Frameworks
listFrameworks
Section titled “listFrameworks”🔍 Read-only
List compliance frameworks.
Parameters: { "organization_id": "org_xxx", "size": 50, "cursor": "optional_cursor"}Supports: Pagination
Returns: Array of frameworks (SOC 2, ISO 27001, etc.), next_cursor for pagination
Example:AI: "List all compliance frameworks" [Uses listFrameworks tool]getFramework
Section titled “getFramework”🔍 Read-only
Get framework details.
Parameters: { "organization_id": "org_xxx", "framework_id": "framework_xxx"}Returns: Framework details including requirements and compliance status
Example:AI: "Get details for framework framework_abc123" [Uses getFramework tool]addFramework
Section titled “addFramework”✏️ Write
Add a new compliance framework.
Parameters: { "organization_id": "org_xxx", "name": "SOC 2 Type II", "description": "Service Organization Control 2"}Returns: Created framework object
Example:AI: "Add SOC 2 Type II framework" [Uses addFramework tool]updateFramework
Section titled “updateFramework”✏️ Write
Update an existing framework.
Parameters: { "organization_id": "org_xxx", "framework_id": "framework_xxx", "status": "IN_PROGRESS"}Returns: Updated framework object
Example:AI: "Update framework framework_abc123 status to IN_PROGRESS" [Uses updateFramework tool]