create-survey
Server Details
Create AI surveys with dynamic follow-up probing directly from your AI assistant.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- feedbk-ai/feedbk-mcp-server
- GitHub Stars
- 2
- Server Listing
- AI Survey Creator MCP Server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 5 of 5 tools scored.
Tools are mostly distinct with clear descriptions. Minor overlap exists between 'create_edit_survey' and 'save_survey' (both involve creation/editing), and between 'preview_survey' and 'share_survey' (both provide links), but descriptions clarify their specific purposes.
All tools follow a consistent verb_noun pattern with underscores (e.g., preview_survey, view_responses). The only slight deviation is 'create_edit_survey' using two verbs, but it still fits the pattern.
With 5 tools covering the core survey lifecycle (create/edit, preview, save, share, view responses), the count is well-scoped and appropriate for the server's purpose.
The tool set covers the main workflow: creation/editing, previewing, saving, sharing, and viewing responses. A minor gap is the lack of a delete/archive tool, but the surface is otherwise complete for typical survey management.
Available Tools
5 toolscreate_edit_surveyCreate or Edit SurveyBRead-onlyInspect
Create a new survey or edit an existing one. Call this to start the survey workflow. If the user provides a project_token, include it to load the existing survey for editing.
| Name | Required | Description | Default |
|---|---|---|---|
| project_token | No | Optional: the user's project token (format: projectId:secret) to load an existing survey for editing |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=true, destructiveHint=false, and openWorldHint=false, which already convey that this is a safe, non-destructive operation with limited scope. The description adds minimal behavioral context beyond this, such as 'start the survey workflow,' but doesn't detail what that entails (e.g., UI interactions, state changes). No contradiction with annotations exists, but the description doesn't enrich behavioral understanding significantly.
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?
The description is concise with two sentences that directly address purpose and parameter usage, avoiding redundancy. It's front-loaded with the core function, though it could be slightly more structured (e.g., separating creation vs. editing scenarios). Overall, it's efficient with minimal waste.
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?
Given the tool's complexity (mutation-like but annotated as read-only), 1 parameter with full schema coverage, no output schema, and annotations covering safety, the description is moderately complete. It explains the dual create/edit function and parameter role but lacks details on workflow outcomes, error handling, or integration with siblings, leaving room for improvement in guiding the agent.
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 100%, with the single parameter 'project_token' fully documented in the schema. The description adds marginal value by reiterating its optional nature and linking it to editing, but doesn't provide additional semantics beyond what the schema already states (e.g., format details or usage nuances). Baseline 3 is appropriate given high schema coverage.
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 clearly states the tool's purpose: 'Create a new survey or edit an existing one.' It specifies the verb ('create'/'edit') and resource ('survey'), making the function unambiguous. However, it doesn't explicitly differentiate from siblings like 'save_survey' or 'preview_survey', which might handle overlapping aspects of survey management.
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 some usage guidance: 'Call this to start the survey workflow' and mentions using 'project_token' for editing. This implies context but lacks explicit when-to-use rules or alternatives (e.g., when to use 'save_survey' instead). It doesn't specify exclusions or prerequisites, leaving gaps in agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_surveyPreview SurveyARead-onlyInspect
Get a preview link for an existing survey so the user can try it out before sharing. Requires the project_token.
| Name | Required | Description | Default |
|---|---|---|---|
| project_token | Yes | Your project token (format: projectId:secret) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare this as read-only, non-destructive, and closed-world, which the description doesn't contradict. The description adds valuable context beyond annotations by specifying that it generates a preview link for testing purposes, which helps the agent understand the tool's behavioral output even without an output schema.
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?
The description is perfectly concise with two sentences that each earn their place: the first states the purpose and action, the second states the requirement. No wasted words, and the information is front-loaded with the core functionality.
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?
For a single-parameter tool with comprehensive annotations and clear purpose, the description is mostly complete. The main gap is the lack of output schema, so the description doesn't specify what the preview link looks like or how it's returned. However, given the tool's simplicity and good annotations, this is a minor omission.
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?
With 100% schema description coverage, the input schema already fully documents the single required parameter (project_token). The description mentions the parameter requirement but doesn't add semantic meaning beyond what's in the schema, such as explaining why this token is needed or how it relates to survey previews.
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 clearly states the specific action ('Get a preview link'), the resource ('an existing survey'), and the purpose ('so the user can try it out before sharing'). It explicitly distinguishes from sibling tools like share_survey and view_responses by focusing on preview functionality rather than distribution or analysis.
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 clear context about when to use this tool ('to try it out before sharing') and mentions the prerequisite requirement ('Requires the project_token'). However, it doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools, though the purpose implies it's for preview rather than final sharing or editing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
save_surveySave SurveyBInspect
Save a survey. Creates a new survey if no token is provided, or updates an existing one. Returns the survey URL and token.
| Name | Required | Description | Default |
|---|---|---|---|
| guide | Yes | ||
| project_token | No | Project token (format: projectId:secret). Omit to create a new survey. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false and destructiveHint=false. The description adds minimal behavioral context beyond confirming mutation (create/update) and returning a URL and token. No additional details about authentication, side effects, or response format are provided.
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?
The description is extremely concise: two sentences with no wasted words. It front-loads the core action 'Save a survey' and efficiently covers the create/update distinction and return values.
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?
Given the tool's complexity (nested objects, no output schema), the description adequately covers the return value (URL and token) and the create/update logic. However, it omits details like error handling, the format of the survey token, and explicit differentiation from the sibling 'create_edit_survey' tool. Nonetheless, it is sufficient for basic usage.
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 50%: the 'project_token' parameter has a schema description (format: projectId:secret). The tool description adds context to 'project_token' by explaining its role in create vs update, but 'guide' remains undocumented in both the schema and description. Overall, the description adds some value but does not fully compensate for the missing parameter documentation.
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 clearly states the tool's purpose: 'Save a survey' and distinguishes between creating (no token) and updating (with token). It is specific with verb-resource, but does not explicitly differentiate from the sibling tool 'create_edit_survey', which may cause confusion.
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 implies usage guidelines by stating when to create vs update based on token presence. However, it does not provide explicit guidance on when to use this tool over alternatives like 'create_edit_survey' or mention any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
view_responsesView Survey ResultsARead-onlyInspect
View survey responses and transcripts. Returns a summary plus a dashboard URL for interactive browsing.
| Name | Required | Description | Default |
|---|---|---|---|
| project_token | Yes | Your project token (format: projectId:secret) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, and the description aligns by stating it 'views' and returns non-destructive output. The description adds value by stating the return content (summary plus dashboard URL), which is beyond annotation coverage.
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?
Two sentences, no wasted words, action verb first, and immediately states what is returned. Highly concise and structured.
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 one required parameter and rich annotations, the description sufficiently covers the tool's operation. It specifies return format but could mention if there are limits or filtering options, though not strictly necessary given the simplicity.
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% with a description for project_token. The tool description does not add any extra semantics for the parameter; it only repeats the purpose. Baseline 3 is appropriate.
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 clearly states the verb 'View' and the resource 'survey responses and transcripts', and specifies the return includes a summary and dashboard URL. It distinguishes from sibling tools like create_edit_survey which are for editing.
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 implies usage for viewing responses but does not explicitly guide when to use this tool versus siblings like create_edit_survey or preview_survey. No when-not-to-use or alternative references are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.