Nurama Developers

list_project_assets

Flat list of assets in a project, scoped to one visibility tier.

Read-only tool.

Flat list of assets in a project, scoped to one visibility tier. Lighter than list_project_feed — no chat metadata, just assets. Use this for inventory queries ("how many assets?") or when you need a raw asset list to scan.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
visibility"creator" | "reviewer"yesWhich visibility tier to read.
limitnumbernoPage size (1-50, default 20). min 1. max 50
searchstringnoCase-insensitive substring match on asset name.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    },
    "visibility": {
      "type": "string",
      "enum": [
        "creator",
        "reviewer"
      ],
      "description": "Which visibility tier to read."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    },
    "search": {
      "type": "string",
      "description": "Case-insensitive substring match on asset name."
    }
  },
  "required": [
    "projectId",
    "visibility"
  ],
  "additionalProperties": false
}

On this page