Skip to main content
Glama

register_genesis

Register an agent's birth. Issues a content-addressed genesis certificate with a strictly monotone index (epoch 0 = the founding cohort). parent_id records lineage; children of recalled/quarantined parents are quarantined at birth. Idempotent — an agent is born once.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYes
parent_idNo
artifact_hashNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description effectively discloses key behaviors: idempotency, monotone index, lineage tracking, and quarantine propagation. It does not mention failure conditions or permissions, but the disclosed behaviors are clear and relevant.

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 three concise sentences with no unnecessary words. The first sentence immediately states the purpose, and subsequent sentences add essential details without redundancy.

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?

Given the tool's moderate complexity and presence of an output schema, the description covers key concepts like idempotency and quarantine. However, it leaves artifact_hash unexplained, which slightly reduces completeness.

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?

The description explains agent_id and parent_id semantics ('records lineage') but omits any explanation for artifact_hash. Since schema description coverage is 0%, the description should cover all parameters; it partially does, leaving one unclear.

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's purpose: 'Register an agent's birth.' It distinguishes from sibling tools like 'register_artifact' by specifying the action on agents rather than artifacts. The mention of 'genesis certificate' further clarifies its role.

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 description implies usage for agent registration but does not explicitly state when to use this tool versus alternatives like 'get_certificate' or 'describe_agent'. It provides constraints (e.g., quarantine propagation) but lacks direct guidance on tool selection.

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.7/5.0
Disambiguation5/5

Each tool targets a distinct operation: describing, fetching, listing, registering, recalling, or verifying. No two tools overlap in purpose.

Naming Consistency5/5

All tool names follow a verb_noun pattern in snake_case (e.g., get_artifact, register_genesis, list_records), with only 'lineage' and 'recall' being single-word verbs but still consistent in style.

Tool Count5/5

11 tools cover the agent provenance domain thoroughly without redundancy. The count is well-balanced for managing genesis, artifacts, and verification.

Completeness5/5

The tool surface covers creation, retrieval, listing, verification, and recall for both agents and artifacts. No obvious gaps for an immutable provenance system.