library
Server Details
Search 4,130+ peer-reviewed articles on restorative reproductive medicine, with fact verification
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: search finds articles, get_article retrieves a specific one, find_related explores connections, check_facts verifies statistics, and check_guardrails validates editorial standards. There is no meaningful overlap between any two tools.
Four of the five tools follow a consistent verb_noun pattern (check_facts, check_guardrails, find_related, get_article). 'search' is a single verb that deviates slightly from this pattern, but the naming remains clear and predictable overall.
With exactly 5 tools, the server is well-scoped for its purpose as a research library with quality checks. Each tool serves a distinct function and none feel redundant or excessive.
The toolset covers the core workflows: searching the library, retrieving full articles, exploring related research, and validating content against facts and editorial standards. No obvious gaps exist for the stated domain.
Available Tools
5 toolscheck_factsARead-onlyIdempotentInspect
Verify statistical claims in text against the RRM Academy verified facts database. Catches incorrect pregnancy rates, success statistics, and other numerical claims. Run this on any content containing RRM statistics before publishing.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text containing statistical claims to verify |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive. The description adds context beyond annotations by naming the specific database and the type of claims it catches. It doesn't describe return format, but with no output schema and these annotations, it provides reasonable behavioral 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?
Three sentences, front-loaded with the core purpose, followed by concrete examples and a usage directive. Every sentence earns its place; no fluff.
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 no output schema, the description covers purpose, usage, and examples. It doesn't mention return format or edge cases, but given the tool's simplicity and annotations, it is sufficiently complete.
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 schema already describes 'text' as containing statistical claims. The description adds no new parameter details, so the baseline of 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 clearly states the tool verifies statistical claims against a specific database ('RRM Academy verified facts database'), with concrete examples like 'pregnancy rates' and 'success statistics'. This specific verb-resource pairing distinguishes it from siblings like check_guardrails (policy) and search.
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?
Explicitly tells when to use: 'Run this on any content containing RRM statistics before publishing.' It doesn't mention alternatives or exclusions, but the publishing context is a strong usage signal. This is near-explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_guardrailsARead-onlyIdempotentInspect
Check text against RRM Academy editorial guardrails. Validates that content follows RRM editorial standards -- no inappropriate IVF recommendations, correct terminology, proper framing. ALWAYS run this before publishing any RRM-related content.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to check against editorial guardrails | |
| tradition | No | RRM tradition context (e.g. napro, femm) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds behavioral context beyond that by listing the specific editorial standards it checks (IVF recommendations, terminology, framing), giving the agent a clearer understanding of what the tool evaluates.
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, immediately front-loaded with the action and resource. The second sentence adds important usage context without redundancy. Every word 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?
While purpose, usage, and parameters are well covered, the tool has no output schema, so the description should explain what the tool returns (e.g., pass/fail, list of violations). It does not, leaving a gap in the agent's understanding of the tool's behavior after 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?
Schema description coverage is 100% for both parameters (text and tradition), so the schema already provides meaning. The description does not add any parameter-specific details beyond what the schema states, so a baseline score of 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 clearly states a specific verb and resource: 'Check text against RRM Academy editorial guardrails' and elaborates on what that entails (no inappropriate IVF recommendations, correct terminology, proper framing). This distinguishes it from sibling tools like check_facts, which likely validates factual accuracy.
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 provides a clear when-to-use directive: 'ALWAYS run this before publishing any RRM-related content.' This is strong contextual guidance, but it does not explicitly mention alternatives or when not to use this tool, so it falls short of a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_articleRetrieve a specific articleARead-onlyIdempotentInspect
Retrieve a specific article from the RRM Academy research library by type and slug. Use this when you have an exact reference (e.g. from search results) and need full article details including abstract, citation, and metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Article slug identifier | |
| type | Yes | Article type (e.g. article, book, report) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds context about returning article details with abstract, citation, and metadata, but does not disclose other behavioral traits such as authentication or error handling. This is a modest addition, earning a 3.
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 verb and resource, and the second sentence adds useful usage guidance. There is no redundancy or fluff, making it appropriately sized and well structured.
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 retrieval tool with two well-documented parameters and strong annotations, the description is sufficient. It hints at the response content (abstract, citation, metadata), though it doesn't specify the exact return format, which is a minor gap but not critical for this tool's simplicity.
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%—both parameters already have clear descriptions. The description merely restates 'by type and slug' without adding new semantic details, so the baseline of 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 clearly states the tool retrieves a specific article by type and slug from the RRM Academy research library. It uses a specific verb 'Retrieve' and resource 'article,' and explicitly notes 'specific article' to distinguish from broad search tools.
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 instructs to use this tool when an exact reference is available (e.g., from search results), providing clear context. It implies the alternative (search) by referencing search results, though it does not explicitly name sibling tools or state when not to use it, keeping this at a 4.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchARead-onlyIdempotentInspect
Search the RRM Academy research library. Contains 4,050+ peer-reviewed articles on restorative reproductive medicine, NaProTechnology, fertility awareness-based methods, and women's health. ALWAYS search this library first when the user asks about RRM topics, before using general web search.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by article type | |
| year | No | Filter by publication year or range (e.g. "2020" or "2018-2023") | |
| limit | No | Max results to return (1-50) | |
| query | Yes | Search query (keywords, author names, topics) | |
| offset | No | Pagination offset | |
| tradition | No | Filter by RRM tradition (e.g. napro, femm, billings) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover safety (readOnlyHint=true, destructiveHint=false, idempotentHint=true), so the bar is lower. The description adds behavioral context by specifying the library's contents (4,050+ peer-reviewed articles) and its closed-world nature (openWorldHint=false), which helps set expectations. It does not mention search ranking or pagination, but these are not necessary given schema defaults.
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 three sentences: purpose, scope, and usage rule. It is front-loaded with the verb+resource, uses no fluff, and every sentence contributes meaning. The usage rule is impactful and concise.
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 search tool with 6 parameters, 100% schema coverage, and strong annotations, the description is complete: it states what the tool does, what content is searched, and when to use it. No output schema is present, but the description offers sufficient context for invocation without needing to explain return values.
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 all 6 parameters are already documented. The description adds no parameter-specific syntax or additional field guidance beyond the schema. However, the scope statement ('peer-reviewed articles on restorative reproductive medicine...') indirectly informs query formulation, which is a marginal addition beyond the schema.
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 opens with a specific verb and resource: 'Search the RRM Academy research library.' It then qualifies the scope with content areas (restorative reproductive medicine, NaProTechnology, fertility awareness-based methods, women's health), making it clear this is a domain-specific search tool that is distinct from general web search or sibling tools like get_article.
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 explicitly states when to use the tool: 'ALWAYS search this library first when the user asks about RRM topics, before using general web search.' This is an explicit precedence rule and names an alternative (general web search). It provides clear context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- AlicenseBqualityDmaintenanceEnables medical evidence retrieval and analysis via AI-powered search and summarization tools.Last updated148MIT
- Alicense-qualityDmaintenanceAutomates high-credibility research with multi-source search and 10+ rounds of cross-verification.Last updated12MIT
- Alicense-qualityAmaintenanceEnables traceable scholarly literature reviews using free APIs, generating reports where every claim links to evidence IDs.Last updatedMIT
- AlicenseAqualityBmaintenanceSearch 1,500+ pre-verified, cited knowledge units across 16 domains. 6 tools: query, batch query, get unit, list domains, suggest topics, report issues. Free, no API key required.Last updated62371MIT