Skip to main content
Glama

Santismm Knowledge — Harness Engineering, Agentic AI & Governance

Get an Agentic Reference Architecture

get_architecture
Read-onlyIdempotent

Get one reference architecture by slug (includes the request flow, reference scenario, KPIs, cost & scaling, and the patterns/knowledge it composes). Use this once search or list_architectures has given you a slug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesArchitecture slug, e.g. 'customer-service-agent'.
localeNoLanguage of the returned body. Default: en.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
bodyNo
nameNo
slugYes
tagsNo
domainYes
localeNo
statusNo
aliasesNo
api_urlYes
localesNo
relatedYes
summaryNo
updatedYes
versionYes
categoryYes
evidenceYesEvidence-First provenance: weight claims by this.
fallbackNo
featuredNo
patternsNo
knowledgeNo
frameworksNo
referencesYes
resource_uriNo
technologiesNo
canonical_urlYes
resolved_localeNo
requested_localeNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover safety (read-only, idempotent, non-destructive), and the description adds meaningful behavioral context by listing the contents of the response: request flow, reference scenario, KPIs, cost & scaling, and composed patterns/knowledge. It also communicates the prerequisite that a slug must come from prior search/list usage.

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 with no filler: the first states the action and result, the second gives the prerequisite workflow. The parenthetical list of contents is compact and informative without bloating the description.

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 single-resource fetch tool with a rich output schema and strong annotations, the description is complete. An agent knows what it retrieves, when to call it, and what prior step must happen first; the schema covers parameter details.

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 has 100% description coverage, including an example slug and a locale enum with default behavior. The description reinforces that the slug is the lookup key but adds little beyond the schema, so the baseline 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 states a specific verb ('Get') and resource ('one reference architecture by slug'), and enumerates what the returned architecture includes. This clearly distinguishes it from sibling list_architectures and search tools, which operate over collections rather than a single fetched item.

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: after `search` or `list_architectures` has produced a slug. This gives a clear workflow and names the relevant alternatives, so the agent knows this is the follow-up fetch step, not a discovery tool.

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.1/5.0
Disambiguation4/5

Most tools are cleanly separated by content type and the list_/get_ pairs are predictable. The main ambiguity is among search, search_all, and search_articles: search claims to cover the 'whole corpus' while search_all actually expands to essays, labs, claims, and the Homeric Atlas, so an agent could select the narrower search and miss content.

Naming Consistency5/5

Every tool follows the same snake_case verb_noun pattern: calculate_*, get_*, list_*, and search_*. Even the three search variants are predictable from their suffixes, so there are no mixed naming conventions.

Tool Count2/5

30 tools is above the preferred MCP size and creates real selection burden for agents, even though the multi-surface knowledge scope explains the volume. The set is systematic rather than bloated, but 25+ tools is still too many for a typical server surface.

Completeness4/5

Each content surface has browse, fetch, and search coverage, and get_related plus get_overview provide cross-cutting navigation. The only meaningful gap is that the relationship between search and search_all is not fully disjoint, which can create a dead-end if the wrong search tool is chosen first.