Skip to main content
Glama

List OpenChainBench benchmarks

list_benchmarks

Returns a flat index of every published OpenChainBench benchmark with its current headline value, leader, category, units, and citation URL.

Call this first when the user asks a discovery question like "what benchmarks does OpenChainBench have?" or "compare crypto aggregators". Then use get_benchmark for the specific slug(s) the answer needs.

Returns one line per bench: { slug, title, category, metric, unit, value, leader, headline, url, asOf }

Drafts are filtered out: only live benchmarks appear.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that drafts are filtered out, describes the return format, and lists the fields returned. It could go further by noting ordering or potential absence of results, but it already provides meaningful behavioral context beyond a generic 'list' statement.

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 concise and well-organized. It leads with the core purpose, then usage guidance, then return shape, then a filter note. Every sentence contributes to understanding the tool with no redundancy.

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 simple, zero-parameter list tool, the description is complete. It covers purpose, usage, return format, and filtering. Since there is no output schema, the explicit field listing compensates adequately, making the tool self-explanatory.

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

Parameters4/5

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

The tool has zero parameters, so the schema coverage is effectively 100%. The description adds value by explaining the meaning of the output fields and the filtering behavior, though it does not need to explain parameters that don't exist.

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 ('Returns a flat index') and resource ('every published OpenChainBench benchmark') with a clear list of included fields. It also distinguishes itself from the sibling `get_benchmark` by explicitly saying to use that tool for specific slugs.

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?

Explicit usage guidance is provided: 'Call this first when the user asks a discovery question' and then use `get_benchmark` for details. This clearly states when to use this tool versus the alternative, along with example questions.

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.9/5.0
Disambiguation5/5

Each tool has a clearly distinct role: list_benchmarks for discovery, get_benchmark for detailed citation-ready data, and query_prom for custom PromQL analysis. The descriptions explicitly guide which tool to use, eliminating ambiguity.

Naming Consistency5/5

All tool names follow the same verb_noun snake_case pattern: list_benchmarks, get_benchmark, query_prom. This consistent convention makes the API predictable and easy to reason about.

Tool Count5/5

With three tools, the server is well-scoped for its purpose. Each tool earns its place: listing, retrieving details, and executing advanced queries. No redundant tools exist, and the count is sufficient to cover the domain without being excessive.

Completeness5/5

The tool set fully covers the read-only benchmark domain: enumeration (list_benchmarks), specific retrieval (get_benchmark), and arbitrary custom analysis (query_prom). No obvious gaps like missing search or filter capabilities are apparent, as list_benchmarks provides a flat index.