Skip to main content
Glama

list_assets

List media (images/videos) the user has uploaded to their SocialClaw library, newest first. Each asset includes a publicUrl usable directly as media_link in validate_schedule/apply_schedule. Use this to find a previously uploaded file (e.g. from the dashboard) to post. Optionally filter by kind (image/video), mime, or a text query over filename/id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoFilter by media kind: image or video.
mimeNoOptional mime prefix filter, e.g. video/mp4.
sortNocreated_desc (default, newest first) or created_asc.
limitNoMaximum assets to return. Defaults to 24, capped at 48.
queryNoOptional text match over filename, id, kind, mime, or url.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the ordering ('newest first'), the nature of the returned data ('Each asset includes a publicUrl'), and the scope ('the user has uploaded'). These add meaningful context beyond a simple list call, though it does not discuss error cases or rate limits.

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 three sentences, each serving a purpose: stating the core function and ordering, noting the publicUrl usefulness, and giving a concrete use case with optional filters. There is no filler or redundancy, making it concise and front-loaded with the most important information.

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?

Despite having no output schema, the description covers the essential context: what the tool returns (media with publicUrl), how it can be used with other tools, and the available filters. It sufficiently informs the agent about how to invoke it for finding previously uploaded files. It doesn't mention the array format explicitly, but 'List' implies it.

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 coverage is 100%, with each parameter having a clear description. The tool description mentions kind, mime, and query filters, but these repeat what the schema already provides. It does not add significant new semantics beyond the structured parameter definitions, so the baseline score of 3 is appropriate.

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 clearly states the tool's function: 'List media (images/videos) the user has uploaded to their SocialClaw library, newest first.' It identifies a specific verb (list), resource (media assets), and scope (user's library). It also distinguishes from sibling tools by mentioning publicUrl and its use in validate_schedule/apply_schedule, which is unique to asset handling.

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 explicitly says when to use it: 'Use this to find a previously uploaded file (e.g. from the dashboard) to post.' It also explains how the output integrates with other tools ('usable directly as media_link in validate_schedule/apply_schedule'). No explicit exclusions are given, but the context clearly differentiates it from listing accounts or posts.

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.

TDQS

B3.4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but a few are close: delete_instagram_comment vs hide_instagram_comment overlap (though one is preferred), and get_analytics overlaps with Instagram-specific analytics tools. Overall, the boundaries are generally clear, with only minor potential confusion.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (e.g., list_accounts, connect_account, upload_asset, cancel_post). There are no deviations in style or grammar, making the naming highly predictable.

Tool Count2/5

With 31 tools, this exceeds the 25-tool threshold for 'too many'. While the broad multi-provider social media domain justifies some breadth, the sheer number makes the surface heavy and potentially overwhelming, pushing the score down.

Completeness4/5

The tool set covers core workflows well: account connection, scheduling/publishing, post management, analytics, Instagram-specific engagement (comments, messages), asset upload, and workspace health/usage. Minor gaps include no explicit disconnect_account or delete_post, but these are edge cases; the domain is largely covered.