MCPMCP Tools/Media/list_flagged_media

list_flagged_media

Readmedia:read

List customer-submitted (UGC) media library photos by moderation status — the read counterpart to moderate_pending_ugc_media. Use this to answer questions like 'what needs my attention', 'show me the spam photos', 'did any customer uploads look inappropriate', or 'what photos got flagged' by looking at the real current verdicts, instead of guessing. Returns id, mediaUrl, status, the classifier's one-line reason, createdAt, and the client/location it belongs to. Omit status to list every UGC photo regardless of verdict (including never-classified ones); omit clientId to search the whole agency.

Parameters
status"ok" | "needs_review" | "spam" | "skipped"optional
Filter to one moderation status. Omit to list photos in every status, including never-classified.
clientIdstringoptional
Client id (from list_clients) to scope to. Omit to search the whole agency.
locationIdstringoptional
Location id (from list_locations) to scope to.
limitnumberoptional
Max rows to return (1–200, default 50).
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_flagged_media",
    "arguments": {}
  }
}
Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Response shape shown for illustration — the actual content depends on the tool and your data.