Skip to main content
Glama

List form responses

clipform_get_responses
Read-onlyIdempotent

List a Clipform form's individual responses (submissions) with time filtering - complements clipform_get_results (aggregates). Answers questions like 'what came in during the last 24 hours', 'what's the longest answer', 'what did people say'. Text answers only: contact details, file uploads, payments, and audio/video answers are redacted to placeholders - point the user at the dashboard for those. Responses are sorted newest first unless sort: 'oldest'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoOrder by submission time. Default: newest
limitNoMax responses to return (default 20, max 50)
queryNoOnly responses whose text answers contain this string (case-insensitive)
sinceNoOnly responses submitted at or after this ISO 8601 time (e.g. '2026-08-29T00:00:00Z')
untilNoOnly responses submitted at or before this ISO 8601 time
contextYesDescribe the user's underlying goal in one sentence - not the tool you're calling.
form_idYesForm UUID (from clipform_list_forms / clipform_create_form)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
returnedYesResponses in this result
responsesYesMatching responses, filtered/sorted/capped per the inputs
total_matchingYesResponses matching the filters (before the limit cap)
locked_over_plan_limitYesMatching responses hidden by the plan's response limit

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already mark this as read-only, idempotent, and non-destructive, and the description adds genuinely useful behavior: default sort order, text-only output, placeholder redaction for non-text answers, and the dashboard fallback. It doesn't go into output pagination, but the output schema covers return shape.

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

Conciseness4/5

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

The description is compact and puts the core purpose first, then adds examples and exclusions. The example questions add some length but help an agent map natural-language intents to the tool, so they mostly earn their place.

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

Completeness5/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 a fully described schema, rich annotations, and an output schema, this description covers what the tool returns, what it excludes, how it sorts, and how it relates to the closest sibling. Nothing needed for correct invocation is missing.

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 schema carries the parameter documentation. The description reinforces time filtering and sort order, but the 'newest first unless sort: oldest' detail is already present in the sort parameter's description, so it adds little parameter-level meaning beyond the schema.

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 leads with a specific verb and resource ('List a Clipform form's individual responses (submissions)') and immediately distinguishes itself from clipform_get_results by clarifying it returns individual rows, not aggregates. This makes its role clear even among many list_* sibling tools.

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

Usage Guidelines5/5

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

It explicitly names clipform_get_results as the aggregate companion, provides representative user questions that signal when to invoke this tool, and states that non-text data is redacted to placeholders with instruction to point users to the dashboard. That is an explicit when/when-not/alternative statement.

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

A3.9/5.0
Disambiguation3/5

Most form/node CRUD tools are clearly distinct, but the render/generate trio (generate_video, render_video_template, render_composition) and get_responses vs get_results can be confused by name alone. The descriptions include strong disambiguation guidance, so the overlap is manageable but still present.

Naming Consistency4/5

The vast majority of tools follow a consistent clipform_verb_noun snake_case pattern, with create/get/update/delete/list used predictably. Minor deviations include get_more_tools lacking the clipform_ prefix and whoami not matching the verb_noun convention.

Tool Count2/5

At 34 tools, this is above the range where a toolset feels well-scoped, and several entries are auxiliary or internal (whoami, log_generation, get_more_tools, search_news). The domain is broad, but the surface could be consolidated without losing core capabilities.

Completeness4/5

The set covers form and node lifecycle, media upload/attachment, logic wiring, publishing, responses/results, and content generation (TTS, video, music, stock media). Minor gaps remain, such as no conditional branching in set_logic and no general media-library listing tool.