ModelsAgree
Server Details
Consensus 'best X for Y' rankings from ChatGPT, Claude, Gemini & Grok. Search, verdicts, history.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: search_best for queries, list_categories for enumeration, get_best_in_category for category leaderboard, get_poll_history for audit trail, get_product for cross-category brand info. No overlap.
All tool names use lowercase snake_case with a clear verb_noun pattern. Verbs (get, list, search) consistently describe the action, and nouns specify the resource. No mixing of styles or vague verbs.
5 tools is well-scoped for a read-only rankings server. Each tool serves a core function without being too sparse or excessive, covering search, listing, and retrieval of detailed data.
The tool surface covers all primary use cases: searching for best in category, listing categories, retrieving full leaderboard, inspecting product records across categories, and viewing poll history. No obvious gaps for a read-only ranking service.
Available Tools
5 toolsget_best_in_categoryGet a category's full rankingARead-onlyInspect
Get the full ranked leaderboard and verdict for a category slug (obtained from search_best or list_categories), e.g. 'best-llm-observability'.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Category slug, e.g. best-llm-observability |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, so the description adds detail that it returns a leaderboard and verdict. This is helpful but does not elaborate on other behavioral aspects like pagination or data freshness.
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 sentence with an example, front-loading the main action and usage. Every element is necessary and efficiently conveys the tool's purpose.
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 tool with one parameter and no output schema, the description sufficiently covers what the tool does and how to obtain the input. It could mention the format of the returned data, but overall it's adequate.
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?
With 100% schema description coverage, the baseline is 3. The description adds value by explaining the slug's origin and providing an example, going beyond the schema's simple type definition.
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 the full ranked leaderboard and verdict for a specific category slug. It distinguishes itself from siblings like search_best and list_categories by requiring a slug obtained from those 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?
The description explains that the slug should come from search_best or list_categories, providing clear context for when to use this tool. However, it does not explicitly state when not to use it or alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_poll_historyGet a category's poll audit trailARead-onlyInspect
Get the raw poll history — every model's pick over time — behind a category's verdict. The credibility/audit trail. Optionally filter by model.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Category slug, e.g. best-llm-observability | |
| limit | No | Optional: max rows (default 100). | |
| model | No | Optional: only this model's picks. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and openWorldHint=true, covering safety and data mutability. The description adds that it returns raw poll history with per-model picks over time, but does not elaborate on pagination, rate limits, or other behavioral traits.
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, front-loading the core purpose with a clear verb and resource. It avoids fluff but could be more structured by mentioning the limit parameter's existence.
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 three parameters, no output schema, and clear annotations, the description adequately covers the tool's purpose and primary behavior. It does not explicitly mention default limit or pagination, but the schema fills those gaps.
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 the schema already documents all parameters. The description reiterates optional model filtering but adds no new semantic meaning 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?
The description clearly states the tool retrieves the raw poll history/audit trail behind a category's verdict, specifying it includes every model's pick over time. This distinguishes it from siblings like get_best_in_category (best product) and list_categories (category 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 use when needing the historical audit trail behind a verdict, with optional model filtering. It does not explicitly exclude scenarios or name alternatives, but the context of sibling tools makes the usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_productGet a brand's recordARead-onlyInspect
Get a single brand/product's record across every category it is ranked in, with verdicts and its homepage.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Product slug, e.g. langfuse |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations (readOnlyHint, openWorldHint) cover safety and scope, and the description adds context about included data (verdicts, homepage) and cross-category coverage, with no contradictions.
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, well-structured sentence that front-loads the core purpose with no unnecessary 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?
For a simple read tool with one parameter and no output schema, the description covers what it does and what data it returns; it lacks details on potential limits or errors but is adequate.
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 does not add significant meaning beyond the schema's parameter description of 'slug'.
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 it retrieves a single brand/product's record across all categories with verdicts and homepage, distinguishing it from siblings like get_best_in_category and search_best.
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 when needing a full product record across categories, but no explicit guidance on when not to use or comparisons with alternatives is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesList all categoriesARead-onlyInspect
List every category ModelsAgree ranks (slug + title). Large; prefer search_best when you have a specific need.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. Description adds the 'Large' size warning, which is useful behavioral context beyond annotations. No contradictions.
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?
Two short sentences, front-loaded with key action. No wasted words. Perfectly concise for a simple tool.
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 no parameters, no output schema, and clear annotations, the description fully covers the tool's purpose and usage. No gaps.
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 has 0 parameters and 100% coverage. Description adds no param info, which is appropriate since there are none. Baseline score of 3 is adequate.
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?
Description clearly states the verb 'List' and resource 'every category ModelsAgree ranks', with specific output fields (slug + title). It distinguishes from sibling tool 'search_best'.
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 states when to use alternative ('prefer search_best when you have a specific need') and notes the result is 'Large', guiding agent away from this tool for targeted queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_bestSearch best-X rankingsARead-onlyInspect
Find what AI models agree is the best product/tool/service for a need, or look up how a specific brand ranks. Returns matching categories and brands with a dated one-sentence verdict and source URLs. Use for any 'best X for Y' question. Excludes medical, financial, and legal advice.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A category, use-case, or brand name — e.g. 'best llm observability', 'ci/cd for cloud native', or 'Langfuse'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and openWorldHint=true. The description adds that results include a 'dated one-sentence verdict and source URLs,' which are useful behavioral details beyond the annotations, but could be more transparent about how 'AI models agree' is determined.
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 with no wasted words. The main action is front-loaded, and the exclusion note is efficiently appended. It earns its place.
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 tool with one parameter and no output schema, the description covers purpose, usage, and output format. Annotations are present. No gaps identified.
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 a clear description of the query parameter. The description adds multiple examples ('best llm observability', 'ci/cd for cloud native', 'Langfuse'), providing concrete usage context that goes 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 'Find what AI models agree is the best product/tool/service for a need, or look up how a specific brand ranks.' It uses a specific verb and resource, and the context of sibling tools (like get_best_in_category) implies differentiation through the mention of categories and brands.
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 explicitly says 'Use for any 'best X for Y' question. Excludes medical, financial, and legal advice.' This tells when to use and what scenarios to avoid, though it does not explicitly compare to siblings like get_best_in_category.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!