Skip to content About The people and vision powering Probo Blog The latest news from Probo Stories Hear from our customers Changelog Latest product updates Docs Documentation for Probo GitHub Explore our open-source compliance tools

Tools: Frameworks

🔍 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]

🔍 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]

✏️ 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]

✏️ 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]