The Aggregate — LLM benchmark aggregate
Server Details
Fused LLM rankings: one IRT/Elo scale across ~5,000 public benchmark leaderboards, updated daily.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 8 tools
Tools mostly target distinct entities and actions: model search/get/compare, benchmark search/get, aggregate leaderboard, prediction duel, and metadata. There is minor overlap between get_leaderboard and search_models (both surface model rankings), but descriptions distinguish top aggregate ranking from name/provider lookup.
Names follow a mostly consistent verb_noun pattern with get_*, search_*, and compare_* prefixes, all in snake_case. about_the_aggregate is a minor deviation from the verb_noun convention but is a reasonable one-off for metadata.
Eight tools are well-scoped for a read-only benchmark aggregate, covering essential query needs without bloat. Each tool earns its place and the count is comfortably within the ideal 3-15 range.
The surface covers core read-only workflows: discovery (search), detail (get), comparison, aggregate leaderboard, metadata, and prediction standings. Minor gaps include no explicit list-all benchmarks/providers or bulk export, though search tools likely suffice for navigation.
Available Tools
8 toolsabout_the_aggregateAbout The AggregateAInspect
What this data is: how the IRT fusion works, current coverage counts, update cadence, and how to cite it.
| 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 the tool returns explanations of IRT fusion, coverage counts, update cadence, and citation info. For a read-only informational tool, this is sufficient, though it does not describe response format or potential restrictions.
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 a single concise sentence that front-loads the purpose ('What this data is') and lists four key areas. Every word earns its place; no unnecessary information.
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 an informational tool with no parameters and no output schema, the description covers the main content areas. It does not provide an example or specify the structure of the output, but it is sufficiently complete for the tool's simple nature.
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 no parameter information is needed. The baseline for no parameters is 4. The description does not mention parameters, which is appropriate.
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 clearly states the tool provides information about the aggregate: how IRT fusion works, coverage counts, update cadence, and citation. This is specific and distinct from sibling tools like get_leaderboard or get_model, which focus on querying data rather than explaining it.
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?
The description implies use when background information about the aggregate is needed, but it does not explicitly state when to use this tool vs alternatives or provide context exclusions. Given the self-evident purpose, this is adequate but not exemplary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_modelsCompare modelsAInspect
Head-to-head between 2-4 models: aggregate ranks, Elo gap with a significance note based on the standard errors, and notable benchmarks they share.
| Name | Required | Description | Default |
|---|---|---|---|
| models | Yes | Two to four model names or slugs. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description fully discloses outputs and mentions a significance calculation. It does not note authentication, rate limits, or side effects, but given the read-only nature of comparisons, it is adequate.
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 a single, front-loaded sentence that efficiently conveys purpose and outputs with zero wasted words.
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?
The description covers the main outputs for a comparison tool. Without an output schema, it sufficiently explains return values. It lacks error handling details, but the tool is simple with one parameter.
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 schema already fully describes the models parameter (100% coverage). The tool description repeats the min/max but adds no new semantic information beyond 'two to four model names or slugs'.
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 specifies a head-to-head comparison of 2-4 models, listing exact outputs (aggregate ranks, Elo gap with significance, notable benchmarks). It clearly distinguishes from sibling tools like get_leaderboard (overall rankings) and get_model (single model details).
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?
The description implies use when comparing specific models, but does not explicitly state when not to use it or mention alternatives. However, the context of sibling tools makes the purpose clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_benchmarkBenchmark detailAInspect
One benchmark in depth: what it measures, the original source leaderboard URL, IRT stats (difficulty, noise, model coverage), skill weights, and the current top models on it.
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | How many top models to list (1-50, default 10). | |
| benchmark | Yes | Benchmark name or slug, e.g. "Aider polyglot". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It lists all returned fields (measure, URL, IRT stats, skill weights, top models), implying a safe read operation. It lacks explicit mention of side effects or auth, but for a read-only lookup, transparency is adequate.
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?
Single sentence listing all returned items is efficient and front-loaded. Slightly dense at 29 words, but no redundancy. Could be split for readability, but it's clear and compact.
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?
No output schema exists, so description must cover return values. It lists key items (measure, URL, IRT stats, skill weights, top models). Parameters are well-documented in schema. For a simple retrieval tool, this is sufficiently complete for an AI agent to understand the output.
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% with clear descriptions for both parameters ('benchmark' and 'top'). The tool description adds no extra parameter details beyond summarizing the output. Baseline 3 applies as schema does the heavy lifting.
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 clearly states the tool retrieves detailed information for a single benchmark, listing specific data points (measure, URL, IRT stats, skill weights, top models). This distinguishes it from sibling tools like get_leaderboard (list) or search_benchmarks (search).
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?
Implicitly, the tool is for deep-diving into one benchmark, contrasting with sibling tools for listing or searching. However, no explicit guidance on when to use or avoid is provided, missing a clear when-not or alternatives statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_leaderboardAggregate leaderboardAInspect
Top of the cross-benchmark aggregate ranking: every model placed on one Elo scale by an IRT model fit over public benchmark leaderboards (call about_the_aggregate for the current coverage counts). One row per model by default, fused across reasoning-effort settings. Supports paging via limit/offset.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Rows to return (1-100, default 25). | |
| offset | No | Rows to skip from the top (default 0). | |
| include_variants | No | Rank each reasoning-effort variant separately (e.g. "Claude Opus 4.6 (High)") instead of one fused row per model. Default false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full disclosure burden. It does useful work by explaining the default row granularity (one row per model, fused across reasoning-effort settings) and the paging surface, but it says nothing about auth, rate limits, ordering guarantees, or error behavior for a non-trivial ranking call.
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?
Three sentences, front-loaded with the resource and data model, then defaults, then paging. Dense but every sentence carries information; only the IRT/Elo jargon could be trimmed for a general reader.
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?
With no output schema, the description compensates by describing the returned structure (one row per model by default, fused across effort settings, all models on one Elo scale). Combined with the full schema coverage, an agent has enough to call and interpret this correctly.
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 limit, offset, and include_variants are already fully documented in the schema. The description only restates the paging mechanism and gestures at the fused-vs-variant distinction, adding little beyond what the schema provides.
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?
States a specific verb and resource (top of the cross-benchmark aggregate ranking) and explains the underlying model (IRT fit on one Elo scale). It is clearly distinguishable from siblings like about_the_aggregate, compare_models, and the search_* tools.
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?
Explicitly routes one related need to a sibling ('call about_the_aggregate for the current coverage counts'), which is genuine when-to-use guidance. However, it gives no condition for choosing include_variants=true versus the default fused view, and no guidance on when to prefer compare_models.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_modelModel profileAInspect
One model in depth: aggregate rank, Elo with standard error, provider, what it is, cost per task where known, and its most notable benchmark results (with percentiles).
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model name or slug, e.g. "Claude Opus 4.5" or "gpt-5-5". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavioral traits. It describes the output content but does not mention idempotency, authentication needs, rate limits, or any side effects. As a read operation, it likely has minimal impact, but this is not confirmed.
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 a single, front-loaded sentence that efficiently lists the tool's output. It is concise with no redundant words, though it could be slightly more structured (e.g., bullet points).
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?
Despite lacking an output schema, the description enumerates the key return fields: rank, Elo, provider, cost, and benchmarks. For a single-parameter tool, this provides a clear picture of what the tool returns. Missing details like output format or pagination are not critical here.
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%, and the description adds minimal value beyond the schema: the parameter 'model' is described in the schema as 'Model name or slug, e.g. "Claude Opus 4.5" or "gpt-5-5". The description does not add new semantic detail (e.g., case sensitivity, format constraints), so a baseline of 3 is appropriate.
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 clearly states the tool provides in-depth profile for one model, listing specific data: aggregate rank, Elo, provider, cost, and notable benchmarks. This distinguishes it from siblings like 'compare_models' (multiple models) and 'get_leaderboard' (list).
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?
The description implies the tool is for obtaining detailed single-model info, but it does not explicitly state when to use it over alternatives like 'compare_models' or 'search_models'. No when-not-to-use or prerequisite guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_prediction_duelPrediction duel standingsAInspect
Guesswork — the public prediction duel: every day frontier LLMs and The Aggregate's own IRT model predict newly scraped benchmark scores before seeing them, and the errors are scored. Returns the current monthly standings, wins and losses included.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explains the purpose and return value but does not explicitly disclose behavioral traits such as read-only nature or side effects. Since no annotations are provided, the description partially carries the transparency burden, but it is adequate for a no-parameter tool.
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, consisting of two sentences. The first sentence provides context, and the second states the output. Every word earns its place with no wasted text.
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?
Given the tool has no parameters and no output schema, the description is sufficiently complete. It explains the concept and return value. Minor gaps exist, such as not clarifying 'wins and losses' detail, but it remains highly functional for a simple tool.
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 input schema has zero parameters and 100% schema description coverage, so the description does not need to add parameter details. The baseline score of 3 applies, and no additional value is provided beyond the schema.
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 clearly states that the tool returns the current monthly standings of a prediction duel, including wins and losses. It uses a specific verb and resource, distinguishing it from sibling tools like get_leaderboard or compare_models.
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?
No guidance is provided on when to use this tool versus alternatives. The description explains what it does but does not specify contexts or exclusions, leaving the agent to infer usage implicitly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_benchmarksSearch benchmarksBInspect
Find benchmarks in the aggregate by (partial) name. Returns model coverage, difficulty on the Elo scale, and the benchmark page URL.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (1-25, default 10). | |
| query | Yes | Benchmark name fragment, e.g. "swe-bench" or "arena". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry behavioral context. It states the tool returns three fields and searches 'by (partial) name', but does not disclose aggregation semantics, sort order, case sensitivity, or pagination behavior beyond the limit parameter.
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 a single, front-loaded sentence that efficiently conveys the action and returns. It is concise but could be slightly improved by structuring the return values as a bullet list.
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 search tool with 2 well-documented parameters and no output schema, the description is adequate. However, it lacks clarity on what 'in the aggregate' means and does not specify matching behavior (e.g., case sensitivity, fuzzy vs exact).
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?
Since schema coverage is 100% and both parameters have clear descriptions, the tool description adds no additional meaning beyond stating 'by (partial) name', which repeats the query parameter description. Baseline 3 is appropriate.
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 clearly states the tool finds benchmarks by partial name and lists the return fields (model coverage, Elo difficulty, URL). It distinguishes from siblings like get_benchmark and search_models, but could explicitly contrast with exact-match retrieval.
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?
The description implies usage for searching benchmarks by name fragment, but does not provide when-to-use or when-not-to-use guidance, nor does it mention alternatives such as get_benchmark for exact matches.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_modelsSearch modelsAInspect
Find ranked models by (partial) name or provider. Returns rank, Elo and the model page URL. One row per model by default, fused across reasoning-effort settings.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (1-25, default 10). | |
| query | Yes | Model or provider name fragment, e.g. "opus" or "deepseek". | |
| include_variants | No | Return each reasoning-effort variant separately (e.g. "Claude Opus 4.6 (High)") instead of one fused row per model. Default false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses return values (rank, Elo, URL) and the default fusion behavior across reasoning-effort settings, which adds meaningful context beyond the schema. However, it does not mention any potential limitations or side effects, but for a read-only search this is acceptable.
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 three short sentences that front-load the main purpose, then enumerate return values and default behavior. Every sentence adds information and there is no fluff or 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?
For a search tool with three well-documented parameters and no output schema, the description covers the essential aspects: what it does, what it returns, and its default variant handling. It lacks guidance on when to use it relative to siblings, but the tool is simple enough that this is a minor gap.
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 all three parameters (query, limit, include_variants) are already documented. The description adds only minor context (e.g., 'fused across reasoning-effort settings') that is essentially a paraphrase of the include_variants schema description, so it provides little additional meaning.
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 uses a specific verb ('Find') and resource ('ranked models'), and specifies the search dimensions (partial name or provider). It clearly distinguishes from sibling tools like get_leaderboard and search_benchmarks by focusing on model search.
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?
The description implies use when searching for models by name or provider but provides no explicit guidance on when to prefer this over sibling tools like get_leaderboard or get_model. No exclusions or alternative tool references are given, so usage context remains implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- Changed
get_leaderboard1 field changed- added
Input schema / properties / include_variantsAdded value: +{ + "description": "Rank each reasoning-effort variant separately (e.g. \"Claude Opus 4.6 (High)\") instead of one fused row per model. Default false.", + "type": "boolean" +}
- Changed
search_models1 field changed- added
Input schema / properties / include_variantsAdded value: +{ + "description": "Return each reasoning-effort variant separately (e.g. \"Claude Opus 4.6 (High)\") instead of one fused row per model. Default false.", + "type": "boolean" +}
8 tool updates
- First observed
about_the_aggregate - First observed
compare_models - First observed
get_benchmark - First observed
get_leaderboard - First observed
get_model - First observed
get_prediction_duel - First observed
search_benchmarks - First observed
search_models
Related MCP Connectors
Pick the right LLM for any task. Ranked shortlist with rationale across 8 evaluators.
Source-backed AI model pricing, rankings, history, and benchmark data.
Measured latency, time to first token and uptime for ~45 AI inference APIs, by region.
Which open models fit your GPU or Mac, measured. Model momentum, GPU rental prices, weekly pick.
Related MCP Servers
- AlicenseAqualityDmaintenanceGive your AI assistant real-time LLM/VLM knowledge. Pricing, benchmarks, and recommendations — updated every hour, not every training cycle.41842MIT
- AlicenseAqualityBmaintenanceRoutes tasks to the optimal AI model based on task type and benchmark scores across 25+ platforms. Automatically selects the best model for coding, reasoning, writing, and more using public benchmark data.5391MIT

HumanJudgeofficial
AlicenseNot gradedqualityBmaintenanceHuman-evaluation infrastructure for AI quality. 25,000+ blind human reviews by 200+ verified reviewers across 58 AI models — query the data via five MCP tools (get_model_scores, compare_models, get_flags, check_content, get_latest).2MIT- AlicenseNot gradedqualityBmaintenanceSearch, rank, and compare 500K+ AI models from 13+ platforms with VRAM and license constraints21MIT