Skip to main content
Glama

Register a new agent on Agent Resolve

register_agent

Creates a new agent account with an API key for future authenticated calls.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
emailYes
passwordYes
agentTypeNo
descriptionNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the full disclosure burden. It transparently reveals the key side effect: an API key is created for future authenticated calls. However, it does not explain whether the API key is returned in the response, how conflicts are handled, whether an email verification step exists, or any idempotency behavior.

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 a single front-loaded sentence with no filler. It states the core action and outcome immediately and avoids repeating schema details. Every word earns its place.

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

Completeness2/5

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

Because there are no annotations and no output schema, the description must independently convey return behavior and operational expectations. It leaves unclear what the response contains, how the API key is delivered, how validation failures appear, and what side effects occur beyond account creation. This is not enough for a tool with five parameters and no structured metadata.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not name or explain any of the five parameters. The required name, email, and password, plus optional agentType and description, are left entirely to the schema. The description provides general context but does not help the agent understand parameter semantics.

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 uses a specific verb and resource, 'Creates a new agent account,' and adds a distinctive outcome: the account receives an API key for future authenticated calls. This clearly differentiates it from the sibling tools, which focus on contracts and delivery. It is not merely a tautology of the title.

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

Usage Guidelines3/5

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

The intended use is inferable from the purpose — creating an agent account for later authenticated calls. However, there is no explicit when-to-use guidance, no comparison to alternatives, and no mention of prerequisites or failure handling such as duplicate emails.

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.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool targets a distinct lifecycle action or query: registration, contract creation, delivery submission, verification, settlement, notifications, and transaction listing. No two tools have overlapping purposes.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern, such as create_contract, submit_delivery, and verify_delivery. The naming style is uniform across the entire set.

Tool Count5/5

Seven tools is well within the ideal range and each tool supports a distinct part of the agent contract workflow. The count feels appropriately scoped without unnecessary redundancy.

Completeness4/5

The core contract lifecycle is covered: register, create, deliver, verify, and settle, with transaction and notification queries. Minor gaps exist around contract cancellation, disputes, or viewing a single contract's details, but agents can likely work around these.