Skip to contentAboutThe people and vision powering ProboBlogThe latest news from ProboStoriesHear from our customersChangelogLatest product updatesDocsDocumentation for ProboGitHubExplore our open-source compliance tools

Tools: Assets

🔍 Read-only

List all organizational assets.

Parameters: {
"organization_id": "org_xxx",
"size": 50,
"cursor": "optional_cursor",
"filter": { "type": "SERVER" }
}

Supports: Pagination, filtering by type Returns: Array of assets with classification, next_cursor for pagination

Example:
AI: "List all organizational assets"
[Uses listAssets tool]
AI: "Show assets of type SERVER"
[Uses listAssets tool with type filter]

🔍 Read-only

Get asset details.

Parameters: {
"organization_id": "org_xxx",
"asset_id": "asset_xxx"
}

Returns: Full asset details including classification and ownership

Example:
AI: "Get details for asset asset_abc123"
[Uses getAsset tool]

✏️ Write

Add a new asset.

Parameters: {
"organization_id": "org_xxx",
"name": "Asset Name",
"type": "SERVER",
"classification": "CONFIDENTIAL"
}

Returns: Created asset object

Example:
AI: "Add a new server asset classified as CONFIDENTIAL"
[Uses addAsset tool]

✏️ Write

Update asset information.

Parameters: {
"organization_id": "org_xxx",
"asset_id": "asset_xxx",
"classification": "HIGHLY_CONFIDENTIAL"
}

Returns: Updated asset object

Example:
AI: "Update asset asset_abc123 classification to HIGHLY_CONFIDENTIAL"
[Uses updateAsset tool]