Skip to main content
Glama
shi-kirill

hermes-docs-mcp

by shi-kirill

fetch

Retrieves a complete Hermes Agent documentation page as markdown using an ID from search results, for cases where snippets are insufficient.

Instructions

Возвращает страницу документации Hermes Agent целиком в markdown.

Принимает id из результатов search — и путь страницы («user-guide/features/mcp»), и id фрагмента с суффиксом («…/mcp#3»), и полный URL страницы документации. Страницы бывают объёмными, поэтому зови только когда фрагментов из search действительно не хватает, а не на каждый результат.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesid из результатов search — либо путь страницы, либо путь с #N

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It discloses that the tool returns the full page in Markdown, that pages can be large, and that multiple id formats are accepted. This is strong coverage for a one-parameter fetch tool, though it could mention failure behavior for invalid ids.

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 compact: three sentences covering function, accepted inputs, and usage caveat. The primary purpose is front-loaded, and every sentence earns its place without meaningless filler.

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 simple one-parameter tool with no annotations and no output schema, the description is complete: it tells the agent what is returned, what id forms are accepted, and when to prefer this tool over search. Nothing essential is missing for correct invocation.

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 schema already documents 'id' with 100% coverage, so the baseline is 3. The description adds meaningful value by clarifying that 'id' can be a page path, a fragment path with #N, or a full URL — the full-URL variant is not present in the schema 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 states a specific action and resource: returning an entire Hermes Agent documentation page in Markdown. It also distinguishes itself from the sibling 'search' by returning full pages rather than fragments, and the id formats make the tool's scope immediately clear.

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 tells the agent when to use this tool: only when search snippets are insufficient, and not for every search result. It names 'search' as the source of ids and as the lighter-weight alternative, providing clear selection criteria.

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

Deploy Server

Other Tools