Skip to main content
Glama

get_surveys

List all surveys belonging to the authenticated user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoFilter by survey status. Defaults to 'all'.

TDQS

C2.9/5.0
Behavior2/5

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

No annotations provided; description only states the action without disclosing behavioral traits such as pagination, rate limits, or whether results are limited. For a read-only tool, basic safety is implied but not explicit.

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?

Single sentence efficiently conveys the tool's purpose with no wasted words. However, it could be slightly restructured to front-load core action.

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

Completeness3/5

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

Given low complexity (1 optional parameter, no output schema), the description is minimally complete. It fails to mention that the result is a list of surveys or typical response fields, but is adequate for a simple list operation.

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% for the single parameter 'status,' which has an enum and description. The tool description adds no additional meaning beyond what the schema provides, so baseline score of 3 applies.

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

Purpose4/5

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

Description states specific verb 'list' and resource 'surveys' with scope 'belonging to the authenticated user.' It is clear but does not explicitly distinguish from sibling tools like 'create_survey' or 'get_responses.'

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

Usage Guidelines2/5

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 (e.g., when to use 'get_surveys' instead of 'get_ai_report' or 'get_responses'). Missing context about typical use cases or prerequisites.

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.7/5.0
Disambiguation4/5

Tools have distinct purposes, but create_survey and get_survey_link both involve shareable links, causing slight overlap. Otherwise clearly differentiated.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using snake_case, e.g., create_survey, get_responses, publish_survey.

Tool Count5/5

Six tools are well-scoped for a survey management server, covering creation, listing, publishing, and data retrieval without being excessive.

Completeness4/5

Core survey lifecycle is covered (create, publish, list, get responses, report), but missing update and delete operations are minor gaps.