amatta-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation4/5
The tools are mostly distinct: vaccine schedule lists all vaccines, while due vaccines is personalized by age; similarly, checkups list all vs. next checkup. However, the pairing of list/get for both vaccines and checkups could cause minor confusion, though descriptions clarify the difference.
Naming Consistency4/5Naming mostly follows a verb_noun pattern (list_, get_, compute_), with list_vaccine_schedule and list_checkups being consistent. compute_growth_percentile introduces a different verb but is still clear. Minor inconsistency in verb choice prevents a perfect score.
Tool Count5/5With 5 tools, the set is well-scoped for pediatric health reference information. Each tool covers a distinct need without redundancy, and the count is appropriate for the domain.
Completeness4/5The domain covers vaccine schedules, growth percentiles, and checkups comprehensively. The only minor gap is the lack of a tool to retrieve details for a specific vaccine or checkup item, but the core informational needs are met.
Average 4/5 across 5 of 5 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 19 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and does add useful limitations: it is reference information, not a diagnosis, and is scoped to WHO charts for 0–24 months. However, it does not disclose behavior regarding missing age inputs, output format, or validation, leaving key behavioral aspects unstated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core function, followed by a concise disclaimer. No filler or redundant content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a six-parameter calculation tool with no output schema or annotations, the description gives the essential purpose and limitations but misses important operational details, such as how age should be specified (birthDate vs ageMonths) and what happens if it is omitted. It is adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description partially supports the schema by naming weight/height/head circumference and the 0–24 month age range, which aligns with the 'measure' and 'ageMonths' fields. Schema description coverage is 67%, and the description adds context but does not explain the relationship between birthDate and ageMonths or the meaning of all parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description states a specific action ('calculates z-score and percentile') for a clear resource (WHO growth charts, 0–24 months) across three measurement types. It distinguishes from sibling vaccine/checkup tools by focusing on growth metrics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description communicates that results are reference-only and advises consulting a pediatrician, which gives context, but it does not explicitly state when to choose this tool over other tools or what conditions make it inappropriate. The intended use is implied rather than directly contrasted with alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It does disclose that the tool provides reference information and not a diagnosis, which is a useful behavioral trait. However, it does not mention the return format or how the optional 'today' parameter influences the calculation, leaving some behavioral aspects unclear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only two sentences, with the first sentence stating the main purpose and the second adding an essential disclaimer. Every word earns its place, and it is front-loaded with the key function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, but without an output schema or annotations, the description should explain what the tool returns and any limitations. It does not describe the result format or the effect of the 'today' parameter, though the schema covers parameter meanings. This is a noticeable gap for an agent deciding whether to invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already has 100% description coverage for both parameters, clearly explaining the meaning and default of 'today'. The description adds no new parameter-level information beyond saying the calculation is based on birth date, which is already in the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb '계산합니다' (calculates) and clearly identifies the resource as the infant health checkup schedule, limiting to '현재/다음' (current/next). This clearly distinguishes it from sibling tools like list_checkups or get_due_vaccines, which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context for the tool's use (calculating checkup timing) but does not explicitly state when to use this tool versus alternatives, nor does it mention sibling tools like list_checkups. The disclaimer about consulting a pediatrician is a limitation, not a usage guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of disclosure. It accurately states the tool returns reference information and is not a diagnosis, adding a valuable safety caveat. However, it does not describe response format or any potential pitfalls like missing parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, each earning its place: one for functionality and one for the medical disclaimer. There is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with optional parameters and no output schema, the description conveys the core purpose and essential caveat. However, it lacks guidance on the no-parameter case or precedence if both parameters are supplied, which would make it more complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes both parameters (ageInDays and birthDate) with 100% coverage, including the alternative relationship. The description merely repeats this ('based on age (days) or date of birth') without adding syntax or precedence details beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns due and upcoming vaccines based on age in days or birth date. This specific verb+resource combination distinguishes it from sibling tools like list_vaccine_schedule or compute_growth_percentile.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when age or birthdate is known, but it does not explicitly state when to use this tool versus alternatives, nor does it provide exclusions. It only offers a medical disclaimer about consulting a pediatrician.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description must carry the behavioral burden. It does so by clarifying the information is for reference only and not a diagnosis, which sets expectations appropriately for a read-only listing tool. It does not elaborate on return format, but for a zero-parameter tool this is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the purpose in the first sentence and a relevant medical disclaimer in the second. There is no redundant information or padding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter tool with no output schema, the description sufficiently explains its function and caveats. It does not explicitly list the exact age ranges or contents of the 8 sessions, but this is a minor gap given the low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the input schema fully covers everything (100% coverage). The baseline of 4 applies because there are no parameter semantics to describe, and the description need not add anything.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns the entire national infant/child health checkup schedule (8 sessions). The verb '반환합니다' specifies the action, and '전체' (full) differentiates from get_next_checkup which returns only the next one. The resource is distinct from vaccine or growth tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a disclaimer that it is reference information, not a diagnosis, and advises consulting a pediatrician. However, it does not explicitly mention when to use this tool versus sibling tools like list_vaccine_schedule or get_next_checkup, leaving the comparison implied by the resource name. This is adequate context but lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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 of behavioral disclosure. It adds that this is reference information, not a diagnostic tool, and recommends pediatric consultation—valuable context beyond a simple 'returns schedule'. As a read-only, zero-parameter operation, it adequately discloses the informational nature without overstating.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the primary purpose, followed by an essential caveat. Every word earns its place; there is no fluff or repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool with no output schema, the description provides sufficient context: what is returned (the full NIP schedule), its purpose (reference), and an important boundary (not diagnostic). It could specify the output format more concretely, but the simplicity of the tool and the disclaimer make the description adequately complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. No parameter descriptions are needed. The description confirms that the tool returns the full schedule without requiring input, which is consistent with the empty input schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('returns the entire NIP standard schedule') with a clear resource and scope. It distinguishes itself from siblings like get_due_vaccines (which likely returns personalized due vaccines) and list_checkups (which lists checkups, not vaccines), making its purpose 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/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context: it is reference information, not a diagnosis, and advises consulting a pediatrician. However, it does not explicitly state when to use this tool versus siblings such as get_due_vaccines or compute_growth_percentile, leaving the differentiation to implication rather than explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jkimdev/amatta-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server