Skip to main content
Glama

Create draft agent

create_agent

Create a new agent — ALWAYS lands as a draft. Publishing stays a human act in the Nebelus console; no deploy tool exists here.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesDisplay name for the new agent.
model_idNoModel to run it on — pick an id from get_catalog(view=models).
descriptionNoShort description of what the agent does.
system_messageNoThe agent's system instruction (its behavior/persona).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changed
    • addedInput schema / properties / description / description
      Added value: +"Short description of what the agent does."
    • changedInput schema / properties / model_id / description
      Previous value: -"Pick from get_catalog(models)"New value: +"Model to run it on — pick an id from get_catalog(view=models)."
    • addedInput schema / properties / name / description
      Added value: +"Display name for the new agent."
    • addedInput schema / properties / system_message / description
      Added value: +"The agent's system instruction (its behavior/persona)."
  2. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false and destructiveHint=false, so the mutation safety profile is covered. The description adds valuable behavioral context beyond annotations: the created agent is always a draft, publishing is intentionally outside this tool's scope, and no deploy tool exists. This is exactly the kind of non-obvious behavioral disclosure that helps an agent avoid a wrong workflow.

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?

Two sentences with zero waste. The core action is front-loaded, and the critical constraint (draft-only, no deploy) is stated immediately after. Every sentence earns its place.

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?

For a create tool with no output schema and no nested objects, the description covers the essential workflow context: creation always results in a draft, and publishing is a human console action. It doesn't describe the return value, but with no output schema and a simple create operation, that is a minor gap. The sibling context (build_agent, update_agent, activate_deployment) further clarifies where this tool fits.

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 schema already documents all four parameters. The description adds no parameter-specific meaning beyond the schema, but it doesn't need to; the schema descriptions are clear. 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 and resource ('Create a new agent') and immediately clarifies the critical scope constraint: it always lands as a draft. This distinguishes it from sibling tools like build_agent, update_agent, and activate_deployment, and makes the tool's purpose unmistakable.

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 says when to use this tool (to create an agent) and, more importantly, what not to expect: publishing is a human act in the Nebelus console and no deploy tool exists here. This prevents an agent from searching for a nonexistent publish/deploy step and clearly routes expectations.

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.

Resources