MCPFerramentas MCP/Mídia/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.

Parâmetros
status"ok" | "needs_review" | "spam" | "skipped"opcional
Filter to one moderation status. Omit to list photos in every status, including never-classified.
clientIdstringopcional
Client id (from list_clients) to scope to. Omit to search the whole agency.
locationIdstringopcional
Location id (from list_locations) to scope to.
limitnumberopcional
Max rows to return (1–200, default 50).
Exemplo de solicitação
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_flagged_media",
    "arguments": {}
  }
}
Exemplo de resposta
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

O formato da resposta é ilustrativo — o conteúdo real depende da ferramenta e dos seus dados.