Skip to main content
Glama

generate_synthetic_identity

Create a unique synthetic first name, last name, and email for a new hire, using an ISO country code to match local naming conventions.

Instructions

Generate a fresh synthetic first name, last name, and email.

Use this to give the new hire its own identity instead of literally duplicating the template worker's name. country should be an ISO 3166-1 alpha-3 code (e.g. "USA", "GBR", "JPN") -- it's used to pick a locale-appropriate name where supported, falling back to en_US otherwise.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countryYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose locale resolution behavior ('locale-appropriate name where supported, falling back to en_US'), which is genuinely useful, but says nothing about randomness, uniqueness guarantees, persistence, or whether re-invocation produces different values.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the output, then usage rationale, then parameter semantics in a logical progression. Slightly verbose in the 'literally duplicating the template worker's name' clause, but no sentence is wasted.

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?

With one param, no annotations, and no output schema, the description covers purpose, usage context, the single parameter, and names the generated fields. It could state the return shape (single object vs separate values), but it is otherwise complete for a simple generator.

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

Parameters5/5

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

Schema coverage is 0%, so the description must compensate, and it does fully: it specifies the exact format (ISO 3166-1 alpha-3), gives concrete examples ('USA', 'GBR', 'JPN'), and explains the parameter's effect (locale-based name selection with en_US fallback). This adds far more than the bare 'Country' string field.

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?

States a specific verb (generate) and precise resource (synthetic first name, last name, email). It implicitly distinguishes itself from get_worker_template by explaining it avoids 'literally duplicating the template worker's name,' but does not name or contrast with the sibling tools directly.

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?

Gives a clear when-to-use scenario: 'give the new hire its own identity instead of literally duplicating the template worker's name,' anchoring it in the hire-synthesis workflow. No explicit when-not or named alternative (e.g. synthesize_test_hire) is provided.

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