Skip to main content
Glama
RVAILab

Profile Questions MCP Server

by RVAILab

create_question

Create a new profile question as free-form text, multiple choice, yes/no, or fill-in-the-blank to capture structured user data.

Instructions

Create a new profile question. Questions can be free-form text, multiple choice, yes/no, or fill-in-the-blank.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceYesThe source/app creating the question
optionsNoRequired for multiple_choice: array of at least 2 options
categoryNoOptional category for organizing questions (max 100 characters)
isActiveNoWhether the question is active (default: true)
descriptionNoOptional description for the question (max 1000 characters)
displayOrderNoOrder for displaying questions (default: 0)
questionTextYesThe question text (1-500 characters)
questionTypeYesThe type of question
allowMultipleNoFor multiple_choice: allow selecting multiple options (default: false)
fillInBlankTemplateNoRequired for fill_in_blank: template containing {blank} placeholder

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It conveys creation but omits permissions/auth needs, default behavior (isActive, displayOrder defaults), and any side effects. The type list is helpful but not behavioral disclosure.

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?

Two tight sentences with no filler and a clear front-loaded verb. It doesn't elaborate, but nothing is wasted.

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?

For a 10-parameter creation tool with no annotations and no output schema, the description is thin. It should at minimum note the conditional requirements for multiple_choice and fill_in_blank and any return/side-effect context, though the rich schema covers field-level semantics.

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%, and the schema already documents all 10 parameters including enum meanings and conditional requirements. The description only restates question types, adding no syntax or interaction detail beyond the schema. Baseline 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?

States a specific verb and resource ('Create a new profile question'), and enumerates valid question types, which aligns with the questionType enum. It doesn't distinguish from siblings, but create vs. list/get/submit is reasonably inferable from the verb.

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 when-to-use guidance or prerequisites. It doesn't state that options are required for multiple_choice or that fillInBlankTemplate is required for fill_in_blank, nor when to prefer this over related tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.