Skip to main content
Glama
RVAILab

Profile Questions MCP Server

by RVAILab

get_my_answers

Fetch the current user's answers to profile questions, optionally filtered by source. Requires authentication.

Instructions

Get the current user's answers to profile questions. Requires authentication.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceNoOptional: filter answers by source

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/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 behavioral burden. It discloses the authentication requirement, which is genuinely useful, but says nothing about read-only nature (only implied by 'Get'), result shape, pagination, or behavior when no answers exist.

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?

Two brief sentences with the core purpose front-loaded and the precondition second; 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 simple no-required-param read tool this is nearly adequate, but with no annotations and no output schema the description should at least hint at the return shape or whether it's scoped to the authenticated identity.

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 single 'source' parameter already documents its enum values and filtering role. The description adds no meaning beyond the schema, so the baseline 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?

States a specific verb and resource: 'Get the current user's answers to profile questions.' This is clearly distinct from sibling tools like submit_answer and list_questions, though it doesn't name or explicitly contrast with any of them.

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?

The only guidance is a precondition ('Requires authentication'); there is no indication of when to use this versus list_questions or the submit_* alternatives, nor any exclusion conditions. Usage is only loosely implied by 'current user's answers.'

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