Skip to main content
Glama
anpekesen

namegender-mcp

Gender from a name

gender_from_name

Predicts gender from a name, returning probability, sample size, and match type. Supports country weighting; uncertain names return 'unknown'.

Instructions

Predicts gender from a person's name. The answer carries more than the gender: the probability, how many people the sample is based on and how the name was matched. Names it cannot be sure about return "unknown" instead of a guess.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesA first name, or a full name to extract the first name from.
countryNoTwo-letter ISO 3166-1 country code (TR, DE, US). When given, the answer is weighted by that country's data — the same name can have a different gender by country.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and does well: it discloses that the response includes probability, sample size, and match type, and that uncertain names return 'unknown' rather than a guess. It stops short of specifying the exact response shape or error behavior, but it is notably transparent for a read-only prediction tool.

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 tight sentences with the purpose front-loaded. The follow-up details about response fields and the 'unknown' fallback are valuable and not redundant; 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 two-parameter read tool with no output schema, the description covers the purpose, the key response fields, and the uncertainty behavior. It could strengthen sibling differentiation, but nothing essential appears missing for an agent to call it correctly.

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 input schema already documents both the name and country parameters, including country-specific weighting. The description's mention of 'a person's name' adds no new parameter semantics beyond what the schema provides, so the baseline score of 3 applies.

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 opens with a specific verb and object: 'Predicts gender from a person's name.' This clearly distinguishes the tool from siblings like gender_from_email and gender_from_username, and the singular framing separates it from gender_bulk. The core function is unambiguous.

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 the tool is for name-based input, which differentiates it from email- and username-based siblings, but it never explicitly states when to choose this over alternatives. There are no conditions, exclusions, or routing guidance, so usage context is only implied rather than stated.

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