Namesake — baby name catalog and guides
Server Details
Read-only access to Namesake's baby name catalog (meaning, origin, pronunciation, SSA-derived...
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clear target: name search vs. name detail, guide list vs. guide detail, and a separate feed/metadata endpoint. No two tools could reasonably be chosen for the same task.
All five tools follow a consistent snake_case verb_noun pattern (get_, list_, search_). The verbs accurately indicate whether the action is retrieval of one item, enumeration, or search.
Five tools is well-scoped for a baby-name catalog and guide resource. Each tool serves a distinct purpose without redundancy.
The set covers the core read-only workflows: finding names via search, retrieving detailed name profiles, and browsing/reading guides. Adding mutation tools would be inappropriate for a public reference server, and no obvious read path is missing.
Available Tools
5 toolsget_guideGet a baby-naming guideARead-onlyInspect
Returns one guide's full content (title, intro, sections) — the same content the human page renders; every guide on this host is free to read. Known topics (8): how-to-choose-a-baby-name, baby-name-checklist, partner-disagreement, baby-name-popularity, pronunciation-test, gender-neutral-names, most-culturally-driven-names-last-decade, why-names-go-in-and-out-of-fashion.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | Guide topic slug (e.g. how-to-choose-a-baby-name). |
Output Schema
| Name | Required | Description |
|---|---|---|
| intro | Yes | |
| title | Yes | |
| topic | Yes | |
| contract | Yes | |
| sections | Yes | |
| canonicalUrl | Yes | |
| metaDescription | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds useful behavioral context beyond annotations: every guide is free to read (no auth/payment concerns) and the returned content exactly matches the human-facing page. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one tight sentence with a front-loaded return statement, followed by a compact list of known topics. Zero filler, every clause carries information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a single required parameter, an output schema, and annotations covering read-only/non-destructive behavior, the description supplies everything needed for a correct call: return structure, access context, and the full set of valid topic values. Nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers the topic parameter fully with an example slug, so the baseline is 3. The description adds a complete list of 8 known topic slugs, going beyond the schema's single generic example and giving the agent concrete valid inputs. This is meaningful added value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description opens with a specific verb and resource: 'Returns one guide's full content (title, intro, sections)'. The clarifying phrase 'the same content the human page renders' further pins down the exact scope, and the enumerated known topics distinguishes it from siblings like list_guides or get_name without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage context is clear: call this when you need the full content of a single guide, identified by its topic slug. The list of known topics helps the agent recognize valid inputs. However, it does not explicitly mention alternatives, such as using list_guides to discover additional topics, so it falls just short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_nameGet a baby name profileARead-onlyInspect
Returns one baby name's public profile: meaning, origin, pronunciation, syllables, style/vibe tags, popularity rank + trend, and the Namesake score breakdown.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name, case-insensitive (e.g. Rowan). |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | |
| origin | Yes | |
| meaning | Yes | |
| contract | Yes | |
| rank2023 | Yes | |
| rank2024 | Yes | |
| vibeTags | Yes | |
| styleTags | Yes | |
| syllables | Yes | |
| scoreTrend | Yes | |
| sexPctMale | Yes | |
| trendLabel | Yes | |
| velocity1yr | Yes | |
| canonicalUrl | Yes | |
| meaningShort | Yes | |
| scoreMeaning | Yes | |
| sexCharacter | Yes | |
| namesakeScore | Yes | |
| pronunciation | Yes | |
| currentlyTop100 | Yes | |
| currentlyTop500 | Yes | |
| originSecondary | Yes | |
| scoreUniqueness | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover readOnlyHint, destructiveHint, and openWorldHint, so the safety profile is clear. The description adds useful context by specifying the tool returns a public profile and listing exactly which data fields are included, but it does not disclose additional behavioral traits such as error handling, normalization, or rate limits. This is adequate but not exceptional given the annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, compact sentence that front-loads the core action and then efficiently lists the returned profile attributes. Every word adds value, and the structure is easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, the description does not need to explain return values in detail. It names all major profile components, communicates that the profile is public, and is accompanied by read-only annotations. This is complete enough for an agent to correctly select and invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 fully documents the `name` parameter. The description adds a small amount of context by indicating the tool returns a profile for one name, but it does not add meaningful parameter semantics beyond what the schema provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb (Returns), a specific resource (one baby name's public profile), and enumerates the profile components (meaning, origin, pronunciation, syllables, style/vibe tags, popularity, Namesake score). This clearly distinguishes it from sibling tools like search_names, which find names rather than retrieve a single profile.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the tool is for retrieving a single name's profile, but it does not explicitly explain when to prefer it over search_names or when not to use it. There is no exclusionary guidance or mention of alternatives, so the usage context is present but only implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_guidesList baby-naming guidesARead-onlyInspect
List every published, free-to-read baby-naming guide on this host. Known topics (8): how-to-choose-a-baby-name, baby-name-checklist, partner-disagreement, baby-name-popularity, pronunciation-test, gender-neutral-names, most-culturally-driven-names-last-decade, why-names-go-in-and-out-of-fashion.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| guides | Yes | |
| contract | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is covered. The description adds meaningful behavioral context by confirming the operation is exhaustive ('every'), restricting to free-to-read content, and listing the exact known topics. This complements the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the core action and scope. The enumerated topic list is long but directly useful for an agent to understand expected results without requiring an API call. Every element serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero parameters, a clear scope, an exhaustive topic list, and an output schema present, the description fully equips an agent to invoke the tool correctly. The openWorldHint=false annotation reinforces that the list is complete, and the description aligns with that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is no parameter semantics burden on the description. The schema is trivially complete with 100% coverage, and the description adds operational context instead of parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List'), a clear resource ('baby-naming guide'), and an explicit scope ('every published, free-to-read ... on this host'). It also enumerates the known topics, which removes ambiguity about what the tool returns and distinguishes it from sibling tools like get_guide.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies this is the tool to use when you want all published guides rather than a single one, and the scope 'every published, free-to-read' sets context. However, it does not explicitly mention alternatives or say when not to use it, such as 'use get_guide for a single guide.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_namesake_feedsList Namesake feedsARead-onlyInspect
List Namesake's free machine-readable feeds and their MCP/REST availability. OpenAPI is also published at https://namesake.baby/openapi.json.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read operation. The description adds useful context: feeds are free, machine-readable, and have MCP/REST availability, plus a public OpenAPI URL. This enriches the behavioral picture without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The main purpose is front-loaded, and the OpenAPI URL is a useful, compact addition. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter listing tool, the description is complete: it states what is listed, mentions MCP/REST availability, and links to the OpenAPI spec for further detail. There are no missing inputs or prerequisites, and the safety profile is covered by annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is no parameter burden for the description to carry. The schema coverage is 100% and no parameter documentation is needed, matching the baseline for zero-parameter tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'List Namesake's free machine-readable feeds and their MCP/REST availability.' It clearly differentiates from siblings by focusing on feeds rather than guides or name search, so an agent can tell this tool apart without opening the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context about what the tool is for and even points to the published OpenAPI spec. It does not explicitly mention alternatives or when-not-to-use, but the context is sufficient to infer that this tool is for listing feed availability rather than retrieving guides or names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_namesSearch the baby name catalogARead-onlyInspect
Search the baby name catalog by prefix/substring. Returns name, origin, short meaning, 2024 SSA popularity rank, Namesake score, and trend label, ordered by popularity.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return (default 10, max 50). | |
| query | Yes | Name prefix/substring, at least 2 characters (e.g. "Row"). |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| query | Yes | |
| results | Yes | |
| contract | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint=true, destructiveHint=false), the description discloses what the response contains: name, origin, short meaning, 2024 SSA popularity rank, Namesake score, trend label, and that results are ordered by popularity. This adds meaningful behavioral context about output content and ordering.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the operation, and every clause adds value: search method, returned fields, and ordering. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only search tool with two fully documented parameters and an output schema, the description is largely complete: it states the search method, return fields, and ordering. The only notable gap is the absence of explicit sibling differentiation or when-not-to-use guidance, but this is minor given the tool's low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both 'query' and 'limit' already fully described. The tool description adds no additional parameter meaning beyond what the schema provides, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('Search'), a resource ('the baby name catalog'), and the method ('by prefix/substring'). It implicitly distinguishes from sibling tools like get_name and list_guides through its search-oriented operation, but it does not explicitly name any sibling or contrast with exact-name lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool by specifying 'prefix/substring' search, so an agent can infer it is for partial-name lookups. However, it offers no explicit guidance about when not to use it, such as preferring get_name for exact names, and no alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- First observed
get_guide - First observed
get_name - First observed
list_guides - First observed
list_namesake_feeds - First observed
search_names
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Read-only tools over an independently vetted catalog of non-toxic home and baby products.
Read-only access to The Family Almanac's parenting-focused book library, grounded guide metadata...
51Read-only U.S. lab-test catalog, collection-site search, and reference-range context.
Read-only U.S. mortgage market, lender, GSE performance, and servicing analytics.
Related MCP Servers
AlicenseAqualityAmaintenanceRead-only access to a self-hosted GeoLens geospatial catalog: dataset search, schemas, GeoJSON features, saved maps, and sandboxed read-only SQL over PostGIS.6240Apache 2.0- AlicenseAqualityCmaintenanceQuery SQL databases (SQLite, PostgreSQL, BigQuery, Databricks) in natural language through a business semantic layer — glossary, metrics, and a data dictionary grounded against your real schema. Read-only by default, with an embedded SQLite + sqlite-vec metadata store and no external infra required.252MIT
- FlicenseNot gradedqualityCmaintenanceEnables natural language querying of SQL databases with robust safety guarantees including read-only enforcement, AST validation, and row caps.-
- AlicenseNot gradedqualityCmaintenanceRead-only access to TrailWeights' ultralight gear corpus — verified weights, creator video reviews, pack templates, and semantic gear search. Auth: none.MIT