get_responses
Get all responses submitted to a specific survey.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| survey_id | Yes | The ID of the survey to get responses for. |
Get all responses submitted to a specific survey.
| Name | Required | Description | Default |
|---|---|---|---|
| survey_id | Yes | The ID of the survey to get responses for. |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It only states what the tool does, not behavioral traits such as data volume, authentication needs, or whether it returns paginated results. Minimal disclosure.
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?
Single sentence with no extra words, efficient. However, slightly too brief for a tool with no annotations or output schema; more detail could be added without harming conciseness.
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?
With no output schema, no annotations, and only one parameter, the description should cover aspects like response format, ordering, or limitations. It does not, leaving the agent uncertain about what to expect.
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 coverage is 100% for the single parameter survey_id, and the description provides no additional meaning beyond the schema. Baseline of 3 applies as the description does not add value on top of the schema.
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?
Description clearly states the tool retrieves all responses for a specific survey, using a specific verb and resource. It distinguishes from siblings like create_survey or get_surveys which have different purposes.
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?
No guidance on when to use this tool versus alternatives like get_surveys. Usage is implied by the name and description, but no when-not-to-use or comparative context is provided.
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.
Tools have distinct purposes, but create_survey and get_survey_link both involve shareable links, causing slight overlap. Otherwise clearly differentiated.
All tools follow a consistent verb_noun pattern using snake_case, e.g., create_survey, get_responses, publish_survey.
Six tools are well-scoped for a survey management server, covering creation, listing, publishing, and data retrieval without being excessive.
Core survey lifecycle is covered (create, publish, list, get responses, report), but missing update and delete operations are minor gaps.