Skip to main content
Glama

client-compass

Complete Profile

complete_profile

Complete the user's profile (one-time signup). Sets name, profession, and generates a User Compass. Required before creating clients.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dobNoDate of birth YYYY-MM-DD (optional, improves compass). Do not ask the user for this before calling — proceed with name only.
phoneNoPhone number (optional)
last_nameYesLast name (required)
first_nameYesFirst name (required)
professionYesProfession (required)
maiden_nameNoMaiden/birth name (optional)
middle_nameNoMiddle name (optional)

TDQS

A4.1/5.0
Behavior3/5

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

No annotations provided, so description bears full burden. Mentions generating a User Compass as side effect, but does not disclose idempotency, error states (e.g., calling twice), or security implications. Adequate but not comprehensive.

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 sentences with zero wasted words. Purpose, outcome, and prerequisite are front-loaded. Efficient and clear.

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?

Tool has no output schema, so description should indicate return values or success/failure. Currently omits any mention of what the response contains (e.g., user data, token). Also lacks handling of re-execution. Adequate for basic usage but incomplete for robust agent reasoning.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so parameters are documented. Description adds value by summarizing key outputs ('sets name, profession') and noting that 'dob improves compass'. This enriches schema information for agent decision-making.

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?

Description clearly states the tool completes the user's profile as a one-time signup, specifying actions (sets name, profession, generates User Compass) and prerequisite. Distinguishes from sibling 'update_profile' by emphasizing one-time signup nature.

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?

States 'Required before creating clients', providing clear context. Does not explicitly exclude use cases or mention alternatives, but context implies this is a single-use setup tool.

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.5/5.0
Disambiguation4/5

Most tools have distinct purposes (create, retrieve, chat). However, generate_compass overlaps with the automatic compass generation in create_person and batch_create_persons, potentially causing confusion about when to use it separately.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_person, get_chat_messages, update_profile). The naming is predictable and clear, with no mixing of conventions.

Tool Count5/5

11 tools is appropriate for a client management system with profile, chat, and compass features. The scope is well-defined and each tool serves a clear function without unnecessary bloat.

Completeness3/5

The tool set supports create, read, and search operations for people, but lacks update and delete functionality. Also, there is no explicit tool to update a client's compass after creation, and chat management is limited to send and retrieve without edit/delete.