Skip to main content
Glama
aryasmol

Atoms MCP Server

by aryasmol

make_call

Initiate an outbound phone call with a chosen agent. Provide a phone number and agent ID, and the agent calls the number using its configured prompt.

Instructions

Initiate an outbound phone call using a specific agent. The agent will call the provided phone number and follow its configured prompt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYesThe agent ID to use for the call
from_numberNoCaller ID / from number in E.164 format. Must be a number owned by your org. If omitted, a default number is used.
phone_numberYesPhone number to call in E.164 format (e.g. +14155551234)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of disclosing behavior. It explicitly states that the agent will call the number and follow its configured prompt, which reveals the side-effecting nature of the tool. However, it omits potential consequences such as call charges, asynchronous behavior, failure modes, or whether the call actually connects.

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 short sentences with no filler. The primary action is front-loaded, and the second sentence adds useful behavioral context about the agent following its configured prompt.

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 parameters are fully documented in the schema and the purpose is clear, but the description lacks usage exclusions, side-effect caveats, and any indication of what happens after the call is initiated. With no output schema and no annotations, slightly more context would make the tool fully self-sufficient.

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% and each parameter already has a meaningful description, including E.164 format for phone_number and the ownership constraint for from_number. The tool description adds little parameter-specific meaning beyond referring to the provided phone number and the configured agent prompt, so the baseline of 3 is appropriate.

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 starts with a specific verb ('Initiate') and a clear resource ('outbound phone call'), and it clarifies that the call is made by a specific agent. It is unambiguous about the core function, though it does not explicitly distinguish this tool from siblings like debug_call.

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

Usage Guidelines2/5

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

The description gives no when-to-use or when-not-to-use guidance and names no alternative tools. The intended usage is only implied by 'Initiate an outbound phone call,' which is insufficient given the presence of debug_call and other related tools in the sibling list.

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