Skip to main content
Glama

update_me

Idempotent

Update your display name or organization name on the active API key. Organization rename requires admin or owner role; only supplied fields change.

Instructions

Update the current user's name and/or the organization name for the active API key; only the supplied fields change. Renaming the organization requires an admin or owner key (access_scope_denied otherwise), and the key must be linked to a user (user_not_found for service keys). At least one of name or org_name is required. Returns the updated identity; read it first with get_me.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew display name for the calling user.
org_nameNoNew organization name; requires admin or owner role.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.1.3
    • addedInput schema / properties / name / description
      Added value: +"New display name for the calling user."
    • addedInput schema / properties / org_name / description
      Added value: +"New organization name; requires admin or owner role."
  2. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

The annotations already signal a non-read-only, idempotent, non-destructive operation. The description goes beyond them by disclosing partial-update semantics ('only the supplied fields change'), specific error conditions, and permission requirements. No contradiction with annotations.

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?

Three dense sentences deliver action, scope, constraints, errors, and return behavior without repetition. Every sentence earns its place and the most important scoping information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter update tool with no output schema, the description covers parameters, return value, prerequisites, error cases, and read-before guidance. An agent has enough information to call it correctly.

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% and both parameters have descriptions. The description adds valuable semantics beyond the schema: at least one parameter is required, only supplied fields are changed, and org_name carries an additional admin/owner constraint.

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?

The description states a specific verb and resource: 'Update the current user's name and/or the organization name for the active API key.' It clearly differentiates this from get_me and other update_* tools by scoping exactly what is mutated.

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

Usage Guidelines5/5

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

It provides explicit when-to-use details: at least one of name or org_name is required, org renaming requires admin/owner, and service keys are not allowed. It also prescribes a supporting step with 'read it first with get_me.'

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

Deploy Server

Other Tools