Skip to main content
Glama

create_survey

Generate a professional survey using AI based on a research goal. Returns the survey ID and shareable link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalYesDescribe what you want to research. E.g. 'Customer satisfaction survey for our SaaS product after onboarding'
langNoLanguage for the survey content. Defaults to 'en'.
publishNoWhether to immediately publish the survey after creation. Defaults to false.

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It states it creates a survey and returns ID/link, but does not disclose side effects, permissions, or safety profile. Adequate but minimal.

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?

Single sentence, front-loaded with purpose. No filler words, highly efficient.

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?

Given simple schema and no output schema, the description explains return values (ID and link). Could mention AI generation aspect but overall complete for a creation tool.

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%, so the description adds no extra parameter meaning beyond what the schema already provides. 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 'Generate a professional survey using AI' which is a specific verb-resource combination. It distinguishes from sibling tools like get_surveys (listing) and get_responses by implying creation.

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 implies usage when a new survey is needed, but does not explicitly state alternatives or when not to use. Still, context from siblings makes it clear enough.

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.