Skip to main content
Glama

Server Details

Versioned documentation registry and semantic search for AI tools and coding assistants.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
reclear-io/llmref-plugin
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: listing projects, listing versions, resolving documentation URLs, and semantic search. No overlap exists.

Naming Consistency5/5

All tools follow a consistent verb_plural pattern (list_projects, list_versions, resolve_docs, search_docs), making them predictable.

Tool Count5/5

With 4 tools covering project discovery, version exploration, artifact retrieval, and search, the count is well-scoped for a documentation server.

Completeness4/5

The tool surface covers the main read-only operations for documentation projects. A minor gap is the lack of project metadata retrieval beyond versions, but it is sufficient for most use cases.

Available Tools

4 tools
list_projectsA
Read-only
Inspect

List indexed documentation projects. Use this first to discover what's available. Supports a forgiving fuzzy query over slugs (ranked by relevance) plus limit and skip for pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
skipNoNumber of results to skip, for pagination (default 0).
limitNoMaximum number of results to return (default 50, max 200).
queryNoForgiving fuzzy filter over project slugs; results are ranked by relevance.
Behavior4/5

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

Annotations provide readOnlyHint and openWorldHint, so the description's focus on fuzzy query and pagination adds useful behavior detail without contradicting annotations. It doesn't cover all traits (e.g., rate limits), but it's sufficient for this simple, read-only tool.

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?

The description is only two sentences, both front-loaded with essential info: purpose first, then usage and features. No filler or repetition; every word earns its place.

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

Completeness4/5

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

For a simple listing tool with no output schema, the description covers purpose, usage context, and parameter behavior adequately. Missing details like default pagination behavior are already in the schema, so no critical gap.

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 coverage is 100%, and the description essentially restates schema info: 'forgiving fuzzy `query` over slugs' and pagination. It adds minimal insight beyond what the schema provides, so 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 clearly states the tool's action: 'List indexed documentation projects.' It also offers a usage hint ('Use this first to discover what's available'), which distinguishes it from siblings like list_versions and search_docs, ensuring no confusion.

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

Usage Guidelines4/5

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

The description advises 'Use this first to discover what's available', implying it's a starting point. It also explains query and pagination support. However, it doesn't explicitly state when not to use it or mention alternatives, leaving some ambiguity.

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

list_versionsA
Read-only
Inspect

List available versions for a project. Call this before resolve_docs or search_docs to see valid version strings.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectYesProject slug (e.g. "nextjs", "react")
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and dynamism. The description adds context that ordering matters, which is valuable behavioral info beyond what annotations provide.

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 concise, front-loaded sentences with no fluff. Every sentence adds value: first states purpose, second gives usage guidance.

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?

With one parameter, no output schema, and comprehensive annotations, the description is sufficient. It covers purpose, usage context, and parameter hint via usage example, leaving no critical gaps.

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 coverage is 100%; the schema already describes the 'project' parameter in detail. The description does not add additional parameter meaning beyond what is in the schema.

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?

Description clearly states the tool lists available versions for a project, with a specific verb and resource. It distinguishes itself by naming sibling tools resolve_docs and search_docs, implying it is a prerequisite.

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?

Explicitly instructs to call this tool before resolve_docs or search_docs, providing clear when-to-use context and differentiating its role among siblings.

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

resolve_docsA
Read-only
Inspect

Resolve a project version and get artifact URLs (llms.txt, llms-full.txt, meta.json, dumps). Use list_versions first to discover valid version strings.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectYesProject slug (e.g. "nextjs", "react")
versionYesVersion string or "latest"
Behavior4/5

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

Annotations already mark the tool as readOnlyHint=true. The description adds the specific artifacts returned, which is useful context. No contradictions or missing behavioral traits beyond what annotations provide.

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 sentences, no filler. Front-loaded with the primary action and follows with a usage hint. Every word is informative.

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

Completeness4/5

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

Description adequately explains what the tool does and lists the artifact filenames. However, without an output schema, it could be improved by specifying the response structure (e.g., key-value pairs). Still, sufficient for a simple tool.

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?

Input schema covers both parameters (project, version) with descriptions. The tool description does not add new semantics beyond the schema, so baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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

The description clearly states the tool resolves a project version to retrieve artifact URLs, mentioning specific filenames. It distinguishes itself indirectly by referencing list_versions as a prerequisite, but does not explicitly contrast with siblings like search_docs.

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

Usage Guidelines3/5

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

The description advises using list_versions first, which provides clear context. However, it lacks explicit when-not-to-use guidance or comparisons with sibling tools beyond the prerequisite hint.

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

search_docsA
Read-only
Inspect

Semantic search across a project's documentation. Returns chunks ranked by relevance. Requires the server to have semantic search enabled.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesNatural-language search query
top_kNoMax results (1-50, default 10)
projectYesProject slug (e.g. "nextjs", "react")
versionYesVersion string or "latest"
token_budgetNoMax tokens to budget for results (default 4096)
Behavior4/5

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

The description adds context beyond annotations (readOnlyHint, openWorldHint) by disclosing the server-side requirement for semantic search. It does not contradict annotations.

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 concise sentences that front-load the purpose and then add the prerequisite. Every sentence is necessary and no filler.

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

Completeness4/5

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

For a search tool with 5 parameters fully defined in schema and no output schema, the description gives sufficient context (semantic search, relevance ranking, server requirement). Could mention how top_k and token_budget affect output, but overall complete.

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?

Input schema has 100% description coverage, so parameters are already well-documented. The description does not add extra meaning or context for any parameter, resulting in a baseline score.

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 clearly states it performs 'semantic search across a project's documentation' and returns 'chunks ranked by relevance', specifying the verb (search) and resource (project docs). It distinguishes from siblings like list_projects and resolve_docs by focusing on semantic search.

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

Usage Guidelines2/5

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

Only mentions a prerequisite ('Requires the server to have semantic search enabled'). No guidance on when to use this tool versus siblings (list_projects, list_versions, resolve_docs) or when not to use it.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    -
    maintenance
    Crawls documentation websites and provides semantic search capabilities over the content through vector embeddings, enabling natural language queries of technical documentation.
    2
  • A
    license
    -
    quality
    C
    maintenance
    Enables AI assistants to crawl, index, and retrieve information from technical documentation using semantic search, with optional knowledge graph validation for code hallucination detection.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.