Skip to main content
Glama

btw

Get one chain

get_chain
Read-only

Everything the book knows about one chain, by slug. Stripe test mode. Test cards only, no real money moves.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYeschain slug

Schema Changelog

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

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds useful safety context: Stripe test mode, test cards only, and no real money moves. It also indicates the response contains 'everything the book knows' about the chain, though it does not detail pagination or output shape.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loads the core purpose before adding the test-mode caveat. There is minor redundancy among 'Stripe test mode', 'Test cards only', and 'no real money moves', but the overall length is appropriate.

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?

For a simple one-parameter read-only lookup by slug, the description covers what the tool returns, how to identify the chain, and the safety environment. It does not describe output fields or error behavior, but the tool is simple enough that these are not critical gaps.

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 schema already provides full coverage of the single `id` parameter with the description 'chain slug'. The description's phrase 'by slug' reinforces this but adds no additional meaning beyond what the schema already states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the operation retrieves all stored information about a single chain, identified by slug, and the name 'get_chain' reinforces this. It is distinguishable from plural siblings like list_chains, though it does not explicitly name them.

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 phrase 'one chain' implies this is the tool for fetching full details of a single chain, contrasting with list_chains. However, there is no explicit statement about when to prefer this tool over alternatives or when not to use it.

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

B3.3/5.0
Disambiguation3/5

Most tools target distinct actions, but join_chain and park_intent explicitly duplicate join and park as deprecated v1 versions, creating unnecessary ambiguity. Additionally, get_chain, status, and book_stats all provide overlapping chain-state information and could be confused.

Naming Consistency2/5

Tool names mix single verbs (join, leave, park, waitlist), verb_noun patterns (get_chain, list_chains), and noun-like names (status, book_stats). The deprecated _intent and _chain suffixes add further inconsistency without a clear convention.

Tool Count4/5

Ten tools is reasonable for the domain, but two are deprecated duplicates that should be removed, making the effective count eight. The remaining tools are well-scoped to the chain and waitlist workflow.

Completeness4/5

The core lifecycle is covered: discover chains, join, leave, check status, park an intent, and waitlist. Minor gaps exist around canceling a park or waitlist entry, but the surface supports the main agent workflows without dead ends.

Resources