Skip to main content
Glama
RVAILab

Profile Questions MCP Server

by RVAILab

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PROFILE_QUESTIONS_API_KEYYesAPI key for authentication
PROFILE_QUESTIONS_API_URLNoBase URL of the White Rabbit APIhttp://localhost:3000

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_questionsA

List profile questions by source. Use this to discover available questions before submitting answers.

create_questionC

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

get_my_answersB

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

submit_answerC

Submit an answer to a profile question. The answer type must match the question type.

batch_submit_answersB

Submit multiple answers at once (up to 50). Useful for completing questionnaires.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct resource-action pair: get_my_answers (retrieve user answers), list_questions (discover questions), create_question (author questions), submit_answer (single answer), batch_submit_answers (bulk answers). The single vs. batch submit pair is clearly delineated, and questions vs. answers tools don't overlap.

Naming Consistency5/5

All names follow a consistent snake_case verb_noun pattern: get_my_answers, list_questions, create_question, submit_answer, batch_submit_answers. The batch_ prefix is a predictable modifier rather than a convention break.

Tool Count5/5

Five tools is well-scoped for a questionnaire/profile domain, with each tool earning its place across the read/create/answer lifecycle. Nothing feels redundant or missing at the count level.

Completeness4/5

Core lifecycle is covered: authoring questions, listing them, and submitting answers singly or in bulk. However, there is no update/delete for questions and no retrieval of a single question by id, which are minor gaps an agent can work around.

Maintenance

ActivityInactive
ResponsivenessNo issues