Skip to main content
Glama

Get a Truss service

get_truss_service
Read-onlyIdempotent

One published Truss service area by slug. Default detail is overview (adds heroLead, overviewSummary, overviewFit, and relatedServices). Pass detail summary for the index card fields only, or full for page sections and fullMarkdown. Unknown slugs return not_found with knownSlugs. Pass locale he for Hebrew; default is en.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
detailNo
localeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugNo
errorNo
groupNo
orderNo
titleNo
localeNo
pageUrlNo
heroLeadNo
sectionsNo
groupLabelNo
knownSlugsNo
markdownUrlNo
overviewFitNo
canonicalUrlNo
fullMarkdownNo
productVersionYes
contentRevisionYes
overviewSummaryNo
relatedServicesNo
shortDescriptionNo

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the readOnly/idempotent annotations, the description discloses default detail behavior, the semantic difference between detail values, the error result for unknown slugs (not_found with knownSlugs), and locale default behavior. This gives an agent a clear model of how the tool behaves at runtime.

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 and front-loaded with the core operation, then efficiently explains the optional parameters and edge-case behavior. Every sentence contributes meaningful guidance without repetition or 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?

With an output schema available, the description does not need to detail return values. It covers default behavior, all parameter options, and the unknown-slug error case, making it complete for a tool of this complexity.

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

Parameters5/5

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

Schema coverage is 0%, so the description carries the full burden. It explains slug as the service area identifier, detail as summary/overview/full with distinct field outcomes, and locale as en default or he. This is far more semantic than the bare enum names 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?

The description clearly states that the tool fetches a single published Truss service area by slug, using a specific verb and resource. This distinguishes it from sibling tools like list_truss_services, which presumably returns multiple services.

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 implies usage: call when you have a slug and need one service area, optionally choosing detail level or locale. However, it never explicitly contrasts this tool with get_truss_information or list_truss_services, leaving the when-not-to-use guidance absent.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation4/5

The tools are mostly distinct: list_truss_services provides an index, get_truss_service returns a single service by slug, and get_truss_information covers non-service topics. There is slight overlap because get_truss_information can include a 'services' topic, but the descriptions explicitly steer agents toward list_truss_services for that case.

Naming Consistency4/5

All tools follow a clear get_/list_ + truss_ object pattern with snake_case. The only minor inconsistency is singular 'service' versus plural 'services', but this is understandable since one fetches a single item and the other lists multiple items.

Tool Count4/5

Three tools is slightly lean but appropriate for a focused content-retrieval server. The tool count matches the apparent scope: listing services, fetching service details, and retrieving general informational content.

Completeness4/5

The surface covers the core read-only workflows: browsing the service index, viewing a specific service, and fetching topic-based information. There are no obvious missing operations for the apparent purpose, though it could theoretically benefit from a tool to list available information topics.

Resources