Skip to main content
Glama
aryasmol

Atoms MCP Server

by aryasmol

update_agent_config

Update an agent's configuration fields such as name, language, first message, and voice. Only specified fields are changed, keeping other settings intact.

Instructions

Update an agent's configuration (name, language, first message, voice settings, etc.). Only provided fields are updated. To update the agent's prompt/instructions, use update_agent_prompt instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew agent name
agent_idYesThe agent ID to update
languageNoLanguage configuration
descriptionNoAgent description
synthesizerNoVoice synthesizer configuration
first_messageNoFirst message when call starts (max 500 chars)
background_soundNoBackground sound option
smart_turn_configNoSmart turn detection configuration
allow_inbound_callNoWhether to allow inbound calls

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It adds the key behavioral detail that only provided fields are updated, but it omits other behavioral aspects such as side effects, required permissions, validation failures, or whether the update is synchronous. Some transparency is present, 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?

The description is two concise sentences with no wasted words. The core action and the critical partial-update behavior are front-loaded, and the alternative tool is mentioned immediately after.

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

Completeness4/5

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

The tool is complex with 9 parameters and nested objects, but the schema is rich and covers all parameters. The description adds the essential context of partial updates and correctly routes prompt-specific changes. Without annotations or an output schema, a brief note on return value could help, but it is not necessary for correct invocation.

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%, so the input schema already documents all parameters in detail. The description mentions general categories (name, language, first message, voice settings) but does not add meaning beyond the schema. Baseline 3 is appropriate.

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 clearly states the tool updates an agent's configuration (name, language, first message, voice settings) and distinguishes it from update_agent_prompt. It uses a specific verb and resource, making the tool's function unambiguous.

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?

The description explicitly notes that only provided fields are updated, which clarifies partial-update behavior. It also names update_agent_prompt as the alternative for prompt/instruction updates, giving the agent a clear routing decision.

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