Skip to main content
Glama

Read a knowledge base article

read_article
Read-only

Fetch the full markdown text of one Ada Diamonds knowledge base article by slug. Use search_knowledge_base first if you don't know the slug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesArticle slug from search_knowledge_base, e.g. "cvd-lab-diamonds" or "lab-diamond-shapes-guide"

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesArticle page URL
slugYesThe slug that was requested
foundYesFalse when no article has that slug
titleYesArticle title, when found
excerptYesOne-paragraph summary, when published
markdownYesThe full article body as markdown, when found

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint and openWorldHint, covering the safety profile. The description adds that the returned content is full markdown, but it does not disclose failure modes, rate limits, or other behavioral nuances. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler. The primary action is stated first, followed by the only necessary usage instruction, making every sentence earn its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read tool with a full output schema, annotations for safety, and sibling context, the description covers everything needed to call it correctly: what it fetches, how it is identified, and what to do when the slug is unknown.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the schema property already explains that slug comes from search_knowledge_base with examples. The description only repeats 'by slug' and does not add meaning 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.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetch') and resource ('one Ada Diamonds knowledge base article by slug'), clearly distinguishing this from search_knowledge_base which would return a list rather than a single full markdown document.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly instructs the agent to use search_knowledge_base first when the slug is unknown, providing a clear conditional routing rule to the relevant sibling tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each search tool targets a distinct inventory category (loose diamonds, engagement ring settings, fine jewelry, knowledge base), and the non-search tools handle distinct actions, no two tools appear to do the same job. Potential overlap between engagement rings and jewelry is resolved by clear setting vs. finished-jewelry descriptions.

Naming Consistency5/5

All eig tools follow a snake_case nouns pattern, with search_* used consistently for lookups and get_/read_request_create_ for other operations. Naming is predictable and uniform.

Tool Count5/5

Eight tools is well-scoped for ecommmerce/knowledge server: three product searche, knowledge-base search plus read, company info, consultation booking, checkout. Every tool ear its place and adds no unnecessary surface area.

Completeness5/5

The set covers the full customer journey: browsing diamonds setting, jewelry, reading guides, getting busines details, requesting consultation, and completing purchase via checkout. Potential gap like order tracking are outside the apparent scope.

Resources