The Family Almanac — parenting library, guide metadata, and magazine
Server Details
Read-only access to The Family Almanac's parenting-focused book library, grounded guide metadata...
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool targets a distinct resource: guide cards, library works, magazine pieces, feed discovery, and library search. There is no meaningful overlap or ambiguity between them.
Most tools follow a clean get_<resource> pattern, with search_library and list_family_almanac_feeds as reasonable collection-level operations. The inclusion of 'family_almanac' in one list tool name is a minor deviation, but the overall style remains predictable.
Five tools is well-scoped for a niche content API covering guides, library records, magazine pieces, search, and feed discovery. Each tool has a clear purpose and none feel redundant.
The core read-only workflows for guides, library works, magazine pieces, and search are covered. The main gap is the lack of list/collection tools for guides and magazine pieces, though known slugs and feed listings partially mitigate this.
Available Tools
5 toolsget_guideGet a grounded parenting guide's metadataARead-onlyInspect
Returns one live guide's title, subtitle, access, book count, and reading time — card-level metadata only, never the paid depth/body content. Known slugs (19): pregnancy, newborn, toddler, preschool, school-age, adolescence, parenting-science, baby-naming, ….
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Guide slug (e.g. pregnancy, newborn, toddler, parenting-science). |
Output Schema
| Name | Required | Description |
|---|---|---|
| live | Yes | |
| slug | Yes | |
| books | Yes | |
| title | Yes | |
| access | Yes | |
| updated | Yes | |
| contract | Yes | |
| subtitle | Yes | |
| guideType | Yes | |
| canonicalUrl | Yes | |
| readingTimeMin | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful behavioral boundaries beyond the readOnlyHint annotation: it returns metadata only and never the paid depth/body content, and it notes the guide must be live. With annotations already covering the safety profile, this is solid additional transparency.
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?
One dense, front-loaded sentence that states the primary behavior, the returned fields, the limitation, and the valid input space without filler. Every clause 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 simple one-parameter read-only tool with a full output schema, the description covers what the tool returns, what it never returns, and the valid slug set. Nothing an agent needs to invoke it correctly 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?
Schema coverage is 100%, but the description adds value by enumerating 19 known slugs (pregnancy, newborn, toddler, ...) and clarifying the slug must refer to a live guide. This is extra semantic guidance beyond the schema's example-based description.
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?
States a specific verb ('Returns') with a specific resource ('one live guide's title, subtitle, access, book count, and reading time') and explicitly scopes it as 'card-level metadata only, never the paid depth/body content', which separates it from content-returning siblings.
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 defines when the tool applies — fetching metadata for a known live guide slug — but it does not explicitly name alternatives or state when not to use it. The sibling list helps infer boundaries, so the guidance is clear context, no exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_library_workGet a parenting library workARead-onlyInspect
Returns one parenting library work's bibliographic record and (when profiled) its thesis.
| Name | Required | Description | Default |
|---|---|---|---|
| libraryId | Yes | Library catalog id (e.g. libb36dccb370592500). |
Output Schema
| Name | Required | Description |
|---|---|---|
| tags | Yes | |
| year | Yes | |
| pitch | Yes | |
| title | Yes | |
| author | Yes | |
| guides | Yes | |
| logline | Yes | |
| contract | Yes | |
| libraryId | Yes | |
| canonicalUrl | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal a safe read operation, and the description adds a meaningful behavioral caveat: the thesis is only returned 'when profiled.' This usefully sets agent expectations about conditional response content beyond what readOnlyHint and destructiveHint convey.
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?
A single, focused sentence that leads with the action and object, with no filler or repetition of schema fields.
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 single-parameter read-only getter with full schema coverage, annotations, and an output schema, the description captures the essential behavior and conditional return content. 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?
Schema description coverage is 100% and the parameter already has a clear description with an example. The tool-level description adds no additional parameter semantics, 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Returns') and a specific resource ('one parenting library work's bibliographic record'), and it implicitly distinguishes itself from siblings like get_guide and get_magazine_piece by targeting generic library works rather than those specific piece types.
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 use case is implied: call this when you have a libraryId and need a single library work's record. However, it does not explicitly say when to prefer it over alternatives or when not to use it, so guidance is implicit rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_magazine_pieceGet a multi-voice magazine pieceARead-onlyInspect
Returns one published magazine piece's question, per-writer sections, and editor's coda — the same content the human page renders, ungated. Known slugs (2): the-whole-room--four-year-old-lying, the-whole-room--my-toddler-had-a-full-blown-meltdown-on.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Magazine piece slug. |
Output Schema
| Name | Required | Description |
|---|---|---|
| slug | Yes | |
| title | Yes | |
| editor | Yes | |
| format | Yes | |
| contract | Yes | |
| question | Yes | |
| sections | Yes | |
| generated | Yes | |
| editorCoda | Yes | |
| canonicalUrl | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is read-only and non-destructive; the description adds useful behavior context by noting the content is the same as the human page renders and is ungated. This clarifies access expectations and return semantics beyond the structured 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 compact sentence that front-loads the core function and content shape, followed by a short list of known slugs. Every part earns its place; there is no filler or repetition of annotation data.
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 single-parameter read-only tool with a defined output schema and known slug values, the description is fully adequate. It explains what content will be returned, that access is ungated, and which slugs are valid, leaving no critical gap for invocation.
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 documents the slug parameter with 100% coverage, but the description adds practical value by naming the exact two known slug values. This goes beyond the generic schema description and helps an agent call the tool without guessing slug formats.
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 ('Returns') with a clear resource ('one published magazine piece') and enumerates the exact content components returned: question, per-writer sections, and editor's coda. This distinguishes it from sibling tools like get_guide and get_library_work, which target different content types.
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 makes clear this tool is for retrieving a magazine piece by slug and even lists the two known valid slugs, giving concrete usage direction. It does not explicitly name alternatives or state when not to use it, but the resource specificity is enough to guide selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_family_almanac_feedsList The Family Almanac feedsARead-onlyInspect
List The Family Almanac's free machine-readable feeds and their MCP/REST availability. OpenAPI is also published at https://thefamilyalmanac.com/openapi.json.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful context by stating the output includes feeds and their MCP/REST availability, and it points to the OpenAPI document. However, it does not describe the exact response shape or any pagination/formatting details, which keeps it at a moderate score.
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. It front-loads the core purpose and then adds a useful supplementary reference to the OpenAPI URL without bloating the explanation.
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, zero-parameter listing tool with read-only annotations, the description is complete: it names what is listed, mentions the MCP/REST availability aspect, and provides an external OpenAPI link for further detail. The lack of an output schema is acceptable because the description directly conveys the expected result type.
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 and the input schema is empty, so there are no parameter semantics to document. The description appropriately focuses on output rather than inputs; the baseline of 4 for a no-parameter tool 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 clearly states a specific action ('List') and a distinct resource: The Family Almanac's free machine-readable feeds and their MCP/REST availability. It is easy to distinguish from sibling tools like get_guide or get_library_work, which retrieve individual items rather than enumerate feeds.
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: whenever the agent needs to discover available feeds and how they can be accessed via MCP/REST. It does not explicitly name sibling alternatives or exclusion criteria, but the listing purpose is clear enough for a zero-parameter discovery tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_librarySearch the parenting library catalogARead-onlyInspect
Search or list the parenting-focused book library by title/author substring and/or classifier tag. No filters returns the first page.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Case-insensitive classifier-tag substring. | |
| limit | No | Max rows to return (default 25, max 100). | |
| query | No | Case-insensitive title/author substring. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tag | Yes | |
| count | Yes | |
| query | Yes | |
| total | Yes | |
| results | Yes | |
| contract | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only and non-destructive. The description adds useful behavioral context beyond annotations, including the no-filter default behavior and the substring/combination search semantics. It does not describe every edge case, but with annotations present, the bar is lower and the added behavior is meaningful.
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?
Two sentences with no filler. The core purpose and key default behavior are front-loaded, and every sentence earns its place. It does not repeat schema details or annotations.
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 an output schema and fully documented optional parameters, the description covers what an agent needs: what it searches, how filters work, and what happens with no filters. No critical decision-making information 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?
Schema description coverage is 100%, so the schema already documents each parameter. The description adds value by clarifying the relationship between parameters: title/author substring maps to query, classifier tag maps to tag, and 'and/or' indicates combinability. This is useful semantic context beyond the individual parameter descriptions.
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 action ('Search or list') and a specific resource ('the parenting-focused book library') with clear filter dimensions. It is immediately distinguishable from sibling tools like get_library_work or get_magazine_piece, which are retrieval-oriented.
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 indicates this tool is for searching or listing the library by title/author and/or tag, and that omitting filters returns the first page. It does not explicitly name alternatives or exclusions, but the usage context is clear enough for an agent to choose it over the sibling get/list tools.
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_library_work - First observed
get_magazine_piece - First observed
list_family_almanac_feeds - First observed
search_library
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 access to Penwright's writing-craft book library, grounded guide metadata (card-level...
41Read-only access to Compensation Professional's compensation-focused book library, query-shaped...
51Read-only tools over an independently vetted catalog of non-toxic home and baby products.
Read-only access to Namesake's baby name catalog (meaning, origin, pronunciation, SSA-derived...
51
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables read-only search, browsing, and metadata retrieval from a local Calibre e-book library using natural language queries.MIT
- FlicenseAqualityCmaintenanceEnables bibliographic research on a private local Calibre library by providing read-only metadata search, book inspection, and optional RAG-based content retrieval through MCP.5-
- AlicenseNot gradedqualityBmaintenanceProvides read-only search and context-pack creation over a local source library, letting AI assistants retrieve relevant excerpts and audit cited quotations.MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only access to local Calibre libraries for searching metadata, inspecting book formats, and extracting content samples. Supports full-text search, batch operations, and detailed book analysis through natural language queries.3MIT