Skip to main content
Glama

Viral Manager

list_assignments

Read-only

List the organization's content assignments (viral posts assigned to creators to reproduce), with their production status and the crew attached to each (editor, clipper, poster). Statuses: pending, in_progress, sent (video submitted — an assignment is validated as soon as the video is received), refused. When presenting assignments to the user, include the post_url link of each referenced post.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
crewNoFilter by crew member attached to the post (editor, clipper or poster; name or member_id, see list_crew). Empty = no crew filter.
limitNoMax assignments to return
modelNoFilter by creator (name, email or model_id). Empty = all creators.
statusNoFilter by production statusall
to_dispatch_onlyNoOnly assignments with delivered videos (creator rushes, editor reels, clipper clips) that nobody receives yet: use dispatch_video on them.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / status / enum
      Previous value: -[
      -  "all",
      -  "pending",
      -  "in_progress",
      -  "filmed",
      -  "sent",
      -  "approved",
      -  "refused"
      -]New value: +[
      +  "all",
      +  "pending",
      +  "in_progress",
      +  "sent",
      +  "refused"
      +]
  2. Changed1 schema field changed
    • addedInput schema / properties / to_dispatch_only
      Added value: +{
      +  "default": false,
      +  "description": "Only assignments with delivered videos (creator rushes, editor reels, clipper clips) that nobody receives yet: use dispatch_video on them.",
      +  "type": "boolean"
      +}
  3. Changed1 schema field changed
    • addedInput schema / properties / crew
      Added value: +{
      +  "default": "",
      +  "description": "Filter by crew member attached to the post (editor, clipper or poster; name or member_id, see list_crew). Empty = no crew filter.",
      +  "type": "string"
      +}
  4. First observed

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark the operation read-only, and the description adds useful behavioral context beyond that: it defines what each status means, notes that an assignment is validated as soon as the video is received, and instructs that post_url should be included when presenting results. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: it states the tool's purpose first, then defines statuses and output expectations. Every sentence earns its place without excessive detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only listing tool with 100% schema parameter coverage, the description covers scope, status semantics, crew association, and an output expectation (post_url). It does not describe full return rows or pagination, but those are not critical given the readOnlyHint and limit parameter.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3; each parameter is already documented in the schema. The description adds contextual framing around statuses, but it does not add meaning to individual parameters beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and resource ('content assignments'), defines what assignments are, and lists the distinguishing data included (status and crew. It differentiates from siblings like get_assignment, create_assignment, and update_assignment by framing itself as an organization-wide listing tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use the tool: whenever the user needs assignments with production status and attached crew. It does not explicitly name alternative tools or state when not to use it, but its listing purpose is clear enough that an agent can infer appropriate use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources