Tools: Assets
listAssets
Section titled “listAssets”🔍 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]getAsset
Section titled “getAsset”🔍 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]addAsset
Section titled “addAsset”✏️ 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]updateAsset
Section titled “updateAsset”✏️ 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]