List submissions
list_submissionsList submissions for a form.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| formId | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| submissions | Yes |
list_submissionsList submissions for a form.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| formId | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
| submissions | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds no extra behavioral context beyond the trivial listing semantics, but it does not contradict annotations either. With strong annotation coverage, this is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence contains no filler and immediately conveys the core operation. Every word earns its place, and the key scoping detail ('for a form') is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, and the output schema plus annotations cover much of what an agent needs. However, the description lacks usage guidance and any behavioral nuances (e.g., ordering, full result set), leaving the agent to infer when to choose this over get_submission. It is minimally viable but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only clarifies that submissions are scoped to a form (formId), but it does not explain the 'limit' parameter or its default/maximum behavior. The schema provides the numeric constraints, but the description adds minimal meaning beyond the property names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('List'), a specific resource ('submissions'), and a scope ('for a form'). It is immediately distinguishable from siblings like get_submission (single item) and list_forms (different resource), even without explicit comparison.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as get_submission or list_forms. The usage is only implied by the verb and resource, with no exclusions or routing hints.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.