Skip to main content
Glama

Clone Agent

ethora-agents-clone-v2

Create a new agent by cloning an existing one, with optional name, slug, or summary overrides. The source agent remains unchanged, and the clone becomes the current agent context.

Instructions

Duplicate an existing saved agent into a new agent, optionally overriding its name/slug/summary (POST /v2/agents/:agentId/clone). The source agent is unchanged; the new clone becomes the session's current agent context. Requires: an agent id or address from ethora-agents-list-v2 or ethora-agents-create-v2. Auth: app-token mode (after ethora-app-select + ethora-auth-use-app). Errors: 401/403 wrong auth; 404 source agentId not found; 422 overridden slug collides.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoName for the clone. Omit to inherit the source agent's name.
slugNoURL-safe unique slug for the clone. Omit to let the server derive one; must not collide with an existing agent.
agentIdNoId of the source agent to clone. Get it from `ethora-agents-list-v2`.
summaryNoSummary for the clone. Omit to inherit the source agent's summary.
agentIdOrAddressNoAlias for `agentId` - either name is accepted, pass whichever you have.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv26.9.3

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate it is not read-only and not destructive; the description adds that the source agent remains unchanged, the clone becomes the session's current agent context, and lists specific error conditions (401/403, 404, 422). This goes beyond annotation coverage.

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 sentences pack in the core action, endpoint, requirements, auth mode, and error cases with no fluff. Information is front-loaded and every sentence carries value.

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?

The description covers the operation, side effects, prerequisites, auth, and errors. Without an output schema, it is still complete enough for an agent to invoke the tool correctly and understand the result.

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 coverage is 100%, so the schema documents all parameters. The description briefly mentions optional overrides and the agentId/address alias, but adds little beyond the schema's own descriptions. 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 states a specific verb ('Duplicate'), resource ('existing saved agent'), and outcome ('new clone becomes the session's current agent context'). It also includes the endpoint and notes the source agent is unchanged, which differentiates it from create/update siblings.

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?

The description provides clear context: it requires an existing agent id/address from list or create, and specifies auth prerequisites. It does not explicitly name when-not-to-use alternatives, but the purpose clearly implies cloning an existing agent rather than creating or updating.

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