Ministry of Gems — Gemmology
Server Details
Verified gemmology reference: 168 FGAA-reviewed terms and 25 handbooks, with citable URLs.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsdefine_gem_termDefine a gemmological termARead-onlyIdempotentInspect
Look up a gemmological term in The Gem Lexicon of Ministry of Gems — 168 definitions verified by an FGAA-qualified gemmologist. Returns the definition, its subject section, and a citable anchor URL. Use for terms such as padparadscha, corundum, parti sapphire, unheated, or asterism.
| Name | Required | Description | Default |
|---|---|---|---|
| term | Yes | The gemmological term to define. |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | No | Citable anchor URL on ministryofgems.com.au. |
| hint | No | |
| term | No | Canonical term name. |
| found | No | False when no term matched. |
| source | No | Name of the source work. |
| message | No | |
| section | No | Lexicon subject section. |
| definition | No | FGAA-verified definition. |
| lexicon_url | No | |
| verified_by | No | Credential of the verifying gemmologist. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior, so the description adds value beyond those: it discloses the curated source (168 verified definitions), the return components (definition, subject section, citable anchor URL), and the authoritative basis. No behavior is hidden or contradicted.
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 concise sentences front-load the action and resource, then add the return payload and one illustrative list of example terms. There is no filler or redundant repetition of the name, and all text 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 single-parameter read-only lookup tool with an output schema, this description is fully sufficient. It tells the agent what will be returned, why the source is trustworthy, and which kinds of inputs to use, while the output schema covers return-value details.
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 only parameter, 'term', has a complete schema description, so the schema already carries the parameter semantics. The description reinforces it with examples but does not add new meaning about formatting, capitalization, or supported values.
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 ('look up') on a specific resource ('gemmological term in The Gem Lexicon of Ministry of Gems'), and names example terms that ground what it accepts. It distinguishes itself from siblings such as list_gem_terms and search_gem_knowledge by focusing on defined-term lookup with verification and citation details.
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 explicit usage context with examples ('Use for terms such as...'), which helps an agent choose it for dictionary-style lookups. It does not explicitly mention when not to use it or name the alternative sibling tools, but the intended scenario is reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_gem_termsList lexicon termsARead-onlyIdempotentInspect
List the gemmological terms available in The Gem Lexicon, optionally filtered to one subject section. Use this to discover what can be defined before calling define_gem_term.
| Name | Required | Description | Default |
|---|---|---|---|
| section | No | Optional section filter, e.g. "Treatments & Enhancement". |
Output Schema
| Name | Required | Description |
|---|---|---|
| terms | Yes | |
| sections | Yes | All lexicon section names. |
| term_count | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds the useful detail that listed terms are valid targets for definition, but it does not disclose additional behavioral context such as pagination or availability limits. Output schema softens that gap.
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 compact sentences deliver the core behavior, scope, and sibling relationship with no unnecessary detail. The most important usage guidance is placed at the end of the second sentence and remains effective.
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?
This is a simple listing tool with one optional parameter, a complete schema, an output schema, and strong annotations. The description gives enough context for an agent to invoke it appropriately without missing information.
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% and the section parameter already has a clear description and example. The tool description does not add meaning beyond the schema, so the schema-heavy 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?
Description states a specific action (list), a specific resource (gemmological terms in The Gem Lexicon), and a scoping option (filter by subject section). It also positions the tool as a discovery precursor to define_gem_term, helping distinguish it from the nearest sibling.
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?
It explicitly tells an agent to use this tool to discover what can be defined before calling define_gem_term, providing a clear when-to-use. However, it does not mention search_gem_knowledge or explain when to choose that sibling instead, leaving a small gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_gem_knowledgeSearch the Ministry of Gems libraryARead-onlyIdempotentInspect
Keyword search across the Ministry of Gems gemmological reference library — 168 lexicon definitions and 25 full-length buyer's handbooks, searched in full text across every section. Returns ranked results, each with the matched passage and a citable URL that deep-links to the chapter.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 5, max 20). | |
| query | Yes | Search query. |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | The query as interpreted. |
| results | Yes | Ranked matches. |
| verified_by | No | |
| result_count | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool read-only, idempotent, and non-destructive. The description adds meaningful behavioral context: full-text searching across all sections, ranked results, matched passages, and citable deep-linking URLs. This goes well beyond what the annotations alone provide.
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 sentence that front-loads the action and resource, then adds scope, return format, and citations without wasted words. 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 two-parameter search tool with read-only annotations and an output schema, the description covers the essential behavioral details: what is searched, how deeply, and what the results look like. Nothing critical is missing for an agent to select and invoke it correctly.
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 documented in the input schema. The description does not need to add parameter detail, and it stays at the baseline by not over-explaining what the schema already covers.
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 ('search'), a clear resource (Ministry of Gems gemmological reference library), and precise scope (168 lexicon definitions, 25 handbooks, full text). It also describes the return format, making the tool's purpose unambiguous and distinct from the sibling 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 clearly conveys that this is the full-text keyword search tool for the gemmology library, which implies usage for broad research queries. It does not explicitly name alternatives or state when not to use it, but the context is clear enough for an agent to distinguish it from define_gem_term and list_gem_terms.
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.
1 tool update
- Changed
search_gem_knowledge6 fields changed- added
Output schema / properties / results / items / properties / score / descriptionAdded value: +"Relevance score. Not emitted; ordering conveys rank." - added
Output schema / properties / results / items / properties / section / descriptionAdded value: +"Lexicon subject section, or the handbook section heading." - added
Output schema / properties / results / items / properties / snippet / descriptionAdded value: +"Verbatim passage from the published text, centred on the match." - added
Output schema / properties / results / items / properties / title / descriptionAdded value: +"Lexicon term name, or the handbook title." - changed
Output schema / properties / results / items / properties / type / descriptionPrevious value: -"lexicon_term or handbook."New value: +"lexicon_term, handbook_section or handbook." - changed
Output schema / properties / results / items / properties / url / descriptionPrevious value: -"Citable URL."New value: +"Citable URL, deep-linked to the chapter where possible."
3 tool updates
- First observed
define_gem_term - First observed
list_gem_terms - First observed
search_gem_knowledge
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
Sourced diamond and gemology tools for AI assistants, with 90 encyclopedia entries.
1011Verified reference data; each record carries its source URL and quote. verify_quote checks claims.
- cytadoOAuthcom.cytado
Real academic citations with printed page numbers - verified sources or an honest not-found.
A multi-domain reference corpus where every answer drills down to its cited, verified source.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenancereference and citation validation, verification, enrichment, replacement and improvement1MIT
- AlicenseBqualityCmaintenanceEnables revision-bound source audits with exact article fingerprinting, claim-to-source mapping, quotation verification, and immutable JSON evidence reports for prepublication review.9MIT
- AlicenseNot gradedqualityBmaintenanceDocument verification for AI agents: forensic authenticity signals for PDFs and images, field extraction, Australian identity checks, adverse-media and sanctions screening, AU/NZ government tender search, AI-text detection, and citation verification. Hosted with a free anonymous tier; the repo ships a Dockerfile that bridges to the live endpoint.MIT
- AlicenseNot gradedqualityCmaintenanceVerifies citations in reference lists by checking DOIs against public registries to catch AI-hallucinated or mismatched citations.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct role: enumerating the lexicon, looking up an exact definition, and full-text searching the broader reference library. An agent can easily choose the right tool based on whether it needs a list, a definition, or a broad search.
All tool names follow the same snake_case verb_noun convention: define_gem_term, list_gem_terms, search_gem_knowledge. The pattern is consistent and makes the toolset predictable.
Three tools is a well-scoped size for a read-only reference server. Each tool has a distinct purpose and none feels redundant or extraneous.
The core workflow of list, define, and search is well covered for a gemmology reference library. The only minor gap is that the 25 buyer's handbooks can be searched but not independently listed or retrieved beyond search snippets.