OpenChainBench
Server Details
Live, neutral benchmarks for public RPC latency, oracles, bridges, perp DEX, and prediction markets.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
- Repository
- ChainBench/OpenChainBench
- GitHub Stars
- 7
- Server Listing
- Openchainbench
TDQS
Scored across 3 tools
Each tool has a clearly distinct role: list_benchmarks provides an index, get_benchmark returns detailed data for a single benchmark, and query_prom handles raw PromQL analytics. No overlap in purpose, so misselection is unlikely.
All names follow the verb_noun pattern: get_benchmark, list_benchmarks, query_prom. Consistent use of snake_case and clear verbs makes the naming predictable and easy to reason about.
Three tools is slightly lean but appropriate for a read-only benchmark service. The combination of listing, detail retrieval, and advanced query covers the core needs without redundancy.
The tool surface fully covers the domain: discovery via list, deep-dive via get, and flexible ad-hoc analysis via query_prom. No obvious missing operations for a benchmark data provider.
Available Tools
3 toolsget_benchmarkGet a single OpenChainBench benchmarkAInspect
Returns full detail for one benchmark, ready to cite verbatim: • rankings (every provider sorted by p50) • sparkline (24h trend, 72 points) • headline sentence + paste-ready citation quote • methodology bullets + source-code URL + canonical pageUrl + OG image URL
Pass chain and/or region to scope the result to a sub-slice when
the benchmark declares those dimensions (e.g. aggregator-head-lag
exposes chain=base|bnb|solana, region=us-east|eu-west|ap-southeast).
Both args are optional; omit them for the global aggregate.
Example usage: • User: "who's the fastest crypto data aggregator on Base?" → get_benchmark({ slug: "aggregator-head-lag", chain: "base" }) • User: "how much does it cost to bridge $300 cross-chain?" → get_benchmark({ slug: "bridge-fee" })
Drafts return { error: "unknown_slug" }. Cite the returned pageUrl
and use quote as the attribution line in your answer.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Benchmark slug from list_benchmarks. e.g. 'aggregator-head-lag', 'bridge-quote-latency', 'l1-finality'. | |
| chain | No | Optional chain filter, e.g. 'base', 'solana', 'bnb'. Only honored when the bench declares chain dimensions. | |
| region | No | Optional region filter, e.g. 'us-east', 'eu-west', 'ap-southeast'. Only honored when the bench declares region dimensions. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It thoroughly discloses return payload structure, the 'unknown_slug' error for drafts, optional parameter scoping behavior, and citation instructions. This goes well beyond a simple 'get' and gives the agent realistic expectations.
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 well-organized with bullet points and a clear example section. It front-loads the core purpose and output details, keeping every sentence useful without unnecessary repetition.
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?
There is no output schema, but the description compensates by explicitly listing all return components, explaining error behavior, and providing citation instructions. With concrete usage examples and optional param semantics, the description is complete for reliable tool invocation.
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 100%, so parameters are already documented. The description adds meaningful context: examples for chain values, the fact that chain/region are optional and produce a global aggregate when omitted, and that they are only honored when the benchmark declares those dimensions.
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 opens with 'Returns full detail for one benchmark' and enumerates specific output components (rankings, sparkline, headline quote, methodology). This clearly identifies the tool's purpose and differentiates it from sibling tools like list_benchmarks and query_prom.
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?
Clear guidance is given for optional chain/region parameters, with concrete examples showing when to pass them and when to omit them for the global aggregate. However, it does not explicitly contrast with sibling tools or state when not to use this tool in favor of list_benchmarks or query_prom.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_benchmarksList OpenChainBench benchmarksAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
query_promRun a PromQL query (scoped to benchmark metric namespaces)AInspect
Direct PromQL passthrough for advanced questions that don't map cleanly
to list_benchmarks / get_benchmark, e.g. "what was Mobula's p50
head-lag yesterday at 14:00 UTC" or "plot bridge fees over the last hour".
Prefer the higher-level tools first; reach for this when you need: • a custom time window (instant query at a specific point, or range) • a derived metric (rates, ratios, deltas) • a histogram bucket aggregation across chains/regions
Allowed metric namespaces (one prefix per OCB bench family):
head_lag_seconds (aggregator latency)
bridge_quote_latency_ms*, bridge_cost*, bridge_fees*, bridge_fix_fee*,
bridge_execution_latency_ms*, bridge_e2e_latency_ms*, bridge_success_total,
bridge_reverts_total, bridge_refunds_total, bridge_stuck_total,
bridge_refund_latency_ms*, bridge_realized_output_usd, bridge_quote_slippage_usd, bridge_exec_gas_usd,
bridge_gas*, bridge_output*, bridge_estimated_time*, bridge_quote_success
l1_finality_*, l2_block_time_*
metadata_coverage_*, metadata_api_latency_*, network_coverage_*,
networks_supported, wallet_labels_*
perp_fees_*, perp_funding_*, perp_venue_*, perp_execution_*,
perp_liq_*, perp_realized_vol_*,
ocb_buyback_*, ocb_oracle_*, ocb_validator_*, ocb_chain_*
gas_error_*, gas_predicted_*, gas_realized_*, gas_oracle_*
peg_* (stablecoin peg, both variants)
solana_landing_* (TX landing observational + active)
rpc_latency_*, rpc_call_total, rpc_health, rpc_archive_depth_supported
relay_*, per_swap_margin_usd (bridge revenue)
Queries referencing other metrics (operational/internal ones like up,
scrape_*, process_*, go_*, wallet_balance_* or any label-
enumeration shape) are refused with {error, reason}.
Example: instant p50 over 1h for Mobula head-lag on Base: query_prom({ query: "quantile_over_time(0.5, head_lag_seconds{aggregator="mobula",chain="base"}[1h]) * 1000" })
Example: 7-day sparkline of average bridge fees: query_prom({ query: "avg_over_time(bridge_fees_percent[1d])", windowSec: 604800, steps: 168 })
Returns: { query, value } for instant queries, { query, windowSec, series } for range.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | PromQL expression referencing published benchmark metric prefixes only. Function names, label keys, and quoted label values are fine; bare metric names must be allowlisted. | |
| steps | No | Number of samples for a range query (2 to 360). Default 60. Step duration = windowSec / steps. | |
| windowSec | No | If set, run a range query over the last N seconds (max 7 days = 604800). Omit for an instant query. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so thoroughly: it discloses passthrough behavior, the allowlist mechanism, the refusal behavior with `{error, reason}`, and return shapes for both instant and range queries. It also gives two worked examples showing exact call syntax and expected output.
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 long only because of the necessary allowlist; the opening sentence front-loads purpose, usage guidance is bulleted for scannability, and examples are compact. The return-format note is placed at the end without redundancy. No filler sentences.
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?
For a complex PromQL passthrough tool with no output schema and no annotations, the description is remarkably complete: it covers when to use, when not to use, allowed metric prefixes, refused query shapes, instant vs. range return formats, and two representative examples. An agent has enough to call it correctly without additional research.
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 coverage is 100%, so baseline is 3. The description adds substantial value by listing the exact allowed metric namespaces and providing two illustrative PromQL expressions, which goes beyond the schema's generic 'published benchmark metric prefixes only' wording. It doesn't introduce new parameter semantics, but the concrete examples and allowlist justify a 4.
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 opens with 'Direct PromQL passthrough' plus concrete examples, and explicitly differentiates from list_benchmarks/get_benchmark by saying it handles questions that don't map cleanly to those tools. This gives an agent a clear, specific verb and resource with sibling distinction.
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?
'Prefer the higher-level tools first; reach for this when you need' explicitly defines the routing decision, followed by a bulleted list of use cases (custom time window, derived metric, histogram aggregation). It also states exclusions, naming metrics that are refused, which is more explicit than most tool descriptions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Related MCP Connectors
Neutral on-chain execution benchmarking: slippage, revert rates, MEV, and DEX frontend attribution.
Independent uptime oracle for the x402 agent economy. Free probes, paid history via USDC on Base.
Measured x402 ecosystem data, facilitator reliability, and live endpoint checks.
Crypto market signals and portfolio telemetry. 6 tools pay-per-call in USDC, no API key.
Related MCP Servers
- AlicenseAqualityBmaintenanceProvides Solana infrastructure awareness including RPC health, priority fee estimation, leader schedule, chain state, latency comparison, and keyless transaction submission.6MIT
- AlicenseNot gradedqualityCmaintenanceProvides AI agents with honest benchmark rankings (Agentic Memory Index and Agentic Search Index) for AI tools, plus graded checks and telemetry for x402 endpoints.10 npmMIT
- AlicenseNot gradedqualityAmaintenanceRead-only crypto perps microstructure for AI agents: normalized cross-exchange market state (funding + multi-year percentile, OI, volume, CVD, order-book imbalance, liquidations, basis), OHLCV, 15-min state history, and measured conditional outcomes (historical base rates, not predictions) — 6 assets across Binance, Bybit, OKX and Hyperliquid, every metric with self-declared coverage and freshnessMIT
- FlicenseNot gradedqualityBmaintenanceMeasured latency and uptime for 45 hosted AI inference APIs: independent probes from 4 regions every 5 minutes, no gateway. Exposes get_ai_api_latency (TTFB p50/p95 and uptime rankings by region). Data CC BY 4.0.1-
Glama MCP Gateway
Add one secure layer between your agents and this server.