Skip to main content
Glama
mso-docs

Docs Navigator MCP - SUSE Edition

Server Quality Checklist

75%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clear, distinct purpose: direct retrieval, semantic search, summarization, Q&A, index management, and source listing. No two tools overlap in function, and the descriptions clearly differentiate them.

    Naming Consistency5/5

    All tool names follow the verb_noun pattern with lowercase and underscores. The verbs (get, search, summarize, ask, index, list) are consistent and the nouns are descriptive. Minor singular/plural variations do not detract from the overall pattern.

    Tool Count5/5

    The server has 6 tools, which is well within the ideal range. Each tool serves a necessary function for a documentation navigator, with no redundant or superfluous tools.

    Completeness5/5

    The tool surface covers the core workflows of a documentation navigator: indexing sources, searching, retrieving specific sections, summarizing, and asking questions. There are no obvious dead ends or missing operations for the stated purpose.

  • Average 3.6/5 across 6 of 6 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • 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.

  • This server has been verified by its author.

  • 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

  • Behavior2/5

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

    With no annotations, the description carries full responsibility for behavioral disclosure. It only says 'Retrieve' and provides no details on error handling, return format, permissions, or behavior for invalid URLs/identifiers. This is a minimal disclosure for a retrieval 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 a single, front-loaded sentence that communicates the core action and parameter without waste. It is appropriately sized for the tool's simplicity.

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

    Completeness2/5

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

    The tool has one parameter, no output schema, and no annotations, yet the description still fails to explain expected output or error behavior. Given the sibling context, there is no mention of when to use this tool vs. searching or summarizing, leaving the agent uncertain about edge cases.

    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 'url' parameter is described as 'The URL or identifier of the documentation section'. The description adds no additional semantic detail beyond restating that the section is retrieved by URL or identifier, 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.

    Purpose5/5

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

    The description uses a specific verb ('Retrieve') and resource ('a specific section of documentation'), clearly distinguishing it from siblings like search_docs or summarize_doc. The phrase 'by URL or identifier' adds scope, so the purpose is unambiguous.

    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?

    The description gives no guidance on when to use this tool versus alternatives. It does not mention that search_docs should be used when the URL/identifier is unknown, nor any other exclusions or prerequisites.

    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, the description must carry the burden of behavioral disclosure. It mentions 'semantic search' and returns 'relevant documentation sections,' which gives some idea of behavior, but it doesn't disclose potential rate limits, authentication needs, whether results are snippets or full text, or whether any other side effects exist. It's minimal but not misleading.

    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 wasted words. The first sentence is front-loaded with the action ('Search'), and the second explains the return type. Every word earns its place.

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

    Completeness3/5

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

    For a simple 3-parameter search tool, the description is adequate but leaves gaps. It doesn't clarify the output format (e.g., URLs, titles, snippets) or how the optional source filter works. Given the sibling get_doc_section, it would help to state that search returns results that may be retrieved with get_doc_section. Still, the tool is simple enough that this is acceptable.

    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% with parameter descriptions for query, limit, and source. The description adds no extra parameter semantics, so baseline 3 applies. It doesn't explain how the source filter interacts with the search or what the limit controls beyond the schema's description.

    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 performs a semantic search over specific documentation sets (SUSE, Rancher, K3s) and returns relevant sections. This is a specific verb-resource pair that differentiates it from siblings like get_doc_section (retrieving a section) or summarize_doc (summarizing), even though it doesn't explicitly name them.

    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?

    No guidance is given on when to use this tool versus alternatives. It doesn't mention exclusions like 'use get_doc_section for retrieving a known section' or 'use ask_question for natural-language questions.' The context implies it's for discovery, but sibling differentiation is absent.

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

  • Behavior2/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 mentions 'AI-powered' and 'open-source models' but does not disclose potential limitations, latency, or what happens if the URL is invalid or inaccessible. No side effects or prerequisites beyond the existence of a URL are stated.

    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 a single, well-formed sentence that states the action and scope. It is front-loaded and contains no redundant or filler content.

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

    Completeness3/5

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

    The tool has a simple 2-parameter schema and no output schema, so the description should clarify expected return behavior. It does not explain what the summary output looks like or how it is returned (e.g., plain text, structured object). Given the absence of annotations and output schema, this is a notable gap, but the description covers the core purpose adequately 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?

    Schema description coverage is 100%: both 'url' and 'format' have clear descriptions, including an enum for format. The tool description adds no additional parameter context, but with full schema coverage, the schema adequately documents the parameters.

    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 'Generate' and clearly states the resource ('summary of a documentation page or section'), which unambiguously distinguishes it from siblings like get_doc_section or search_docs. It immediately communicates the tool's core function.

    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?

    Usage context is implied by the description ('summary' vs. retrieval/search), but there is no explicit guidance on when to use this tool over siblings. For example, it does not state that this should be used instead of get_doc_section when a synthesized overview is needed or search_docs when looking for specific information.

    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, the description carries the full burden. It discloses that the tool searches docs and returns an answer with sources, but does not explicitly state that it is a read-only operation or describe limitations such as what happens if no relevant documentation is found. The behavior is partially transparent but lacks depth.

    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 two sentences long, front-loaded with the core action, and contains no extraneous information. 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 tool with no output schema, the description adequately explains the result (an answer with sources). It is missing an explicit statement about how it handles out-of-scope questions, but overall it is complete enough for straightforward use.

    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?

    The input schema already provides complete descriptions for both parameters ('question' and 'context'). The description adds no additional semantic value for parameters, so the baseline of 3 applies.

    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 purpose: asking a question about SUSE documentation and returning an answer with sources. It distinguishes itself from siblings like search_docs (which likely returns raw search results) and summarize_doc (which summarizes content) by emphasizing AI-synthesized answers.

    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?

    No explicit guidance is given on when to use this tool versus alternatives like search_docs or get_doc_section. The description implies it is for question-answering, but there is no mention of exclusions or when another tool would be more appropriate.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden for behavioral disclosure. It does not mention side effects, idempotency, or that indexing overwrites existing data, despite being a mutation tool. The presence of a 'forceRefresh' parameter hints at cache behavior, but the description omits any implications.

    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 two sentences, front-loaded with the core action and purpose. Every sentence contributes value, and there is no redundancy or filler.

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

    Completeness3/5

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

    Given the tool has two parameters, no output schema, and no annotations, the description is minimally viable but leaves gaps. It states the primary use case but does not explain the effect of indexing, the meaning of 'update the index,' or any prerequisites. This is adequate for a simple tool but lacks depth.

    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%, with both parameters documented. The description adds no extra meaning beyond the schema, so it meets the baseline but does not exceed it. The enum values for 'source' are not elaborated in the description, but that's acceptable given full schema coverage.

    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 ('Index documentation from specified sources') and its purpose ('for faster searching'). It distinguishes from sibling tools that are for retrieval/summarization, establishing this as a maintenance operation.

    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 provides explicit timing guidance: 'run initially or to update the index.' This tells the agent when to invoke the tool, though it does not explicitly mention alternatives or when not to use it. Sibling tool names imply the distinction.

    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, the description carries the full burden. It discloses that the tool returns status, but does not clarify whether the operation is read-only, how status is defined, or what happens if no sources exist. The behavior is mostly predictable for a list tool, but the description provides minimal extra context.

    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 a single, front-loaded sentence with no unnecessary words. It covers the essential action and result in a concise, well-structured manner.

    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, zero-parameter list tool, the description is largely complete. It explains the purpose and that status is included, but does not detail the exact return format or the meaning of 'status'. Given the tool's simplicity and the context from sibling names, this is adequate.

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

    Parameters4/5

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

    The tool has zero parameters, so there is nothing for the description to explain. Per the rubric, a baseline of 4 is appropriate when no parameters exist, since the schema covers everything vacuously.

    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'), resource ('documentation sources'), and additional detail ('and their status'). It is easily distinguished from sibling tools that get sections, search, summarize, ask, or index documentation.

    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?

    Usage is implied rather than explicitly stated: it lists available sources, so one would use it to get an overview. However, there is no explicit guidance about when to choose this over alternatives or any exclusions, leaving the agent to infer.

    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

Docs-Navigator-MCP-SUSE-Edition MCP server

Copy to your README.md:

Score Badge

Docs-Navigator-MCP-SUSE-Edition MCP server

Copy to your README.md:

Latest Blog Posts

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/mso-docs/Docs-Navigator-MCP-SUSE-Edition'

If you have feedback or need assistance with the MCP directory API, please join our Discord server