Skip to main content
Glama

Read a guide

open77_guide
Read-only

Get Open77 guide content in Markdown, either the full guide by slug or a specific section via anchor or heading. Use this tool to pull documentation sections referenced from open77_search.

Instructions

A guide or one of its sections, as Markdown. Slugs come from open77_search (guide results) or the list returned when slug is omitted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugNoGuide slug, e.g. native-map, server-resources, fivem-compatibility; a search ref `slug#section` is accepted as is
sectionNoSection anchor or heading; omit for the whole guide

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.1.1
    • changedInput schema / properties / section / description
      Previous value: -"Section anchor; omit for the whole guide"New value: +"Section anchor or heading; omit for the whole guide"
    • changedInput schema / properties / slug / description
      Previous value: -"Guide slug, e.g. native-map, server-resources, fivem-compatibility"New value: +"Guide slug, e.g. native-map, server-resources, fivem-compatibility; a search ref `slug#section` is accepted as is"
  2. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the readOnlyHint annotation, it discloses the output format (Markdown) and the behavior of omitting slug (returns a list). These are useful behavioral details not present in the schema or 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?

A single, efficient sentence that front-loads the core purpose and immediately provides actionable usage guidance. No wasted words.

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?

Given the tool's simplicity (2 optional params, no output schema), the description covers the main use cases: reading a specific guide/section and listing guides. It could mention error handling, but that is not essential for a read-only tool with annotations clarifying safety.

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 covers both parameters at 100% with descriptions. The description adds context on how to obtain valid slugs (from open77_search) but does not enrich the meaning of the parameters themselves beyond 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?

States a specific verb (read) and resource (guide/section), and outputs as Markdown. It also names the slug source (open77_search) which differentiates it from sibling search tools. 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 Guidelines4/5

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

Provides clear context: slugs come from open77_search or from the list returned when slug is omitted. This tells an agent exactly when and how to call the tool, though it does not explicitly name alternatives to avoid using instead.

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