Skip to main content
Glama

Update my profile

update_my_profile
Destructive

Update your candidate profile: name, phone, location, education, and work experience.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
phoneNoPhone number
addressNoPostal address or location
lastnameNoLast name
educationNoFull education history — replaces existing list
firstnameNoFirst name
experienceNoFull work experience — replaces existing list

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
phoneNo
addressNo
lastnameNo
educationNo
firstnameNo
experienceNo

TDQS

B3.3/5.0
Behavior2/5

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

The annotations already declare destructiveHint=true, and the description adds no behavioral context beyond that. It does not disclose that the education and experience arrays fully replace existing lists, nor what happens when no parameters are supplied.

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?

A single, front-loaded sentence with no wasted words. The verb and resource come first, followed by a concise list of the updateable areas.

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?

The schema and annotations carry most of the burden: all parameters are described, destructive behavior is flagged, and an output schema is present. Still, the description alone leaves ambiguity around partial updates, full replacement semantics for education/experience, and the lack of required parameters.

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?

Input schema coverage is 100%, so the schema already documents all parameters thoroughly. The description's field list loosely maps to the schema (location→address, name→firstname/lastname) but adds little semantic value beyond what the schema provides.

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?

The description states a specific verb ('Update') and a clear resource ('your candidate profile'), then enumerates the touched fields: name, phone, location, education, and work experience. It is obviously distinct from the read-only sibling get_my_profile, though it does not explicitly name that alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied: use this tool when the candidate's profile fields need to be changed. However, there is no explicit 'when to use' guidance, no mention of get_my_profile for reading current data first, and no warning about whether omitted fields are preserved or cleared.

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

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear boundaries between search, recommendations, and recent searches. The descriptions resolve any potential overlap, making misselection unlikely.

Naming Consistency5/5

All tool names follow a consistent action_noun pattern in snake_case. Get operations use 'get_', while update, withdraw, and search operations use their respective verbs, maintaining a predictable convention.

Tool Count5/5

With 10 tools, the server is well-scoped for its purpose, covering job search, application management, and profile handling without unnecessary bloat or a thin surface.

Completeness3/5

The toolset covers job search, job details, profile retrieval/update, and application withdrawal. However, there is no direct 'apply' tool, which is a notable gap in a job-focused server, though agents can work around it via external links.

Resources