Inventory Report
inventory_reportBuild a governance inventory with risk tiers from a raw agent list. FREE.
Turns a list of agents / MCP servers / skills into an audit-ready summary with critical/elevated/standard tiers and unowned-agent flags. Typical input {"items": "[{"name": "deploy-bot", "owner": "ana"}]"} returns {"total": N, "tiers": {"critical": N, ...}, "unowned_agents": [...], "inventory": [{"name": ..., "owner": ..., "tier": ..., "orphaned": bool}], "reading": "...", "note": "..."}.
Use to turn a raw agent list into risk tiers. Not for auditing any single agent in depth (audit_mcp_config, scope_check). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | The fleet as a string — a JSON array of {name, owner?, capabilities?, last_seen?} objects, or plain newline-separated agent names. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||