get_guide
Get a published guide by slug.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| locale | No |
Get a published guide by slug.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| locale | No |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only, idempotent, and non-destructive, so the description only needs to add context beyond that. It adds the 'published' scoping detail, but it does not disclose behavior for unpublished slugs, locale fallback, or error responses. No contradiction with annotations exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or redundancy. It is appropriately sized for a simple retrieval tool and every word contributes to the meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The schema and annotations cover parameter constraints and safety, but there is no output schema and the description does not describe the returned guide structure, behavioral edge cases, or locale semantics. The definition is adequate for a basic getter but leaves meaningful gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the input schema. It clarifies that slug is the lookup identifier, but it completely omits the optional locale parameter, its meaning, and how it affects the returned guide. This is a significant gap for a two-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') with a clear resource ('published guide') and identifier ('slug'), making the tool's purpose immediately understandable. It is distinguishable from siblings such as list_guides, get_tool, and get_stack by resource type and retrieval semantics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used when you have a specific guide slug, but it does not explicitly state when to use this versus alternatives like list_guides. No exclusions or alternative routing are provided, so the usage guidance remains inferred rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource and action: get/list for guides, stacks, and tools, plus a dedicated search and compare tool. There is no meaningful overlap between get_tool and search_tools because one is direct retrieval and the other is discovery.
All tool names follow a consistent verb_noun pattern using lowercase snake_case. get_*, list_*, search_*, and compare_* are predictable and easy to group by intent.
Seven tools is well-scoped for a knowledge/discovery server focused on tools, stacks, and guides. Each tool covers a clear need without redundancy or bloat.
The core read-only surface is well covered: guides and stacks have get/list, tools have get/search/compare. The main minor gap is the lack of a dedicated list_tools or search for guides/stacks, though agents can likely work around this with the existing tools.