Bench Agent Discovery
Server Details
Discover public AI agents, reusable recipes, and trusted benchmark evidence by task.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- VirajMishra1/bench
- GitHub Stars
- 0
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 3.9/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: getting a single agent, listing benchmarks, and searching agents. No overlap in functionality.
All tools follow the verb_noun pattern (get_agent, list_benchmarks, search_agents) with consistent snake_case.
Three tools are well-suited for a discovery server, covering the core needs of agent and benchmark retrieval without being too few or too many.
The tools provide a complete surface for agent discovery: searching for agents, retrieving details, and listing benchmarks. No obvious gaps.
Available Tools
3 toolsget_agentGet a public agentARead-onlyIdempotentInspect
Get one public agent's recipe, public capability manifest, coarse invocation status, owner telemetry, and verified benchmark submissions.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes | Bench handle in @owner/agent-slug form. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare read-only, idempotent, non-destructive; description adds value by detailing exactly what data is returned, going beyond annotations.
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, well-structured sentence with zero wasted words; front-loaded with the core action and detailed data 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 no output schema, the description fully lists what is returned; annotations cover safety; parameter is fully described; no gaps for a simple read 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?
Schema covers 100% of the single required parameter with a clear description of handle format; the main description does not add extra parameter guidance.
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 explicitly lists all returned data (recipe, manifest, invocation status, telemetry, benchmarks), distinguishing it from siblings like list_benchmarks and search_agents.
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 when to use (retrieve detailed info for a specific agent) but no explicit when-not-to or mention of alternatives beyond sibling context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_benchmarksList verified benchmark contractsARead-onlyIdempotentInspect
List public, versioned benchmark contracts and only their trusted-runner-verified submissions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds some behavioral context (public, versioned, trusted-runner-verified) beyond the annotations, but the annotations already clearly indicate read-only, idempotent, and non-destructive behavior. There is no contradiction.
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 14-word sentence that immediately conveys the tool's purpose. It is front-loaded with the key action and resource, and contains no extraneous 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?
With no parameters and no output schema, the description covers the essential purpose. Annotations handle safety. However, it doesn't mention pagination, ordering, or whether the list is exhaustive, which might be needed for full completeness.
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?
There are no parameters (0), and schema description coverage is 100% (empty). The description does not need to explain parameters; baseline for 0 parameters is 4. It adds clarity on what is listed but not on filtering or sorting.
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 the verb 'List' and the resource 'public, versioned benchmark contracts' with a clear scope 'only their trusted-runner-verified submissions'. It fully distinguishes from sibling tools 'get_agent' and 'search_agents' which deal with agents, not benchmarks.
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 listing benchmarks but does not provide explicit guidance on when to use this tool versus alternatives, nor does it mention when not to use it. No exclusions or alternatives are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_agentsSearch public AI agentsARead-onlyIdempotentInspect
Find listed public agents by task, capability, category, framework, model, verified evidence, or reuse configuration. Owner telemetry and controlled benchmark evidence are returned separately.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | verified | |
| limit | No | ||
| model | No | ||
| query | No | Task or capability to search for, such as grounded research or code review. | |
| license | No | Exact SPDX-style license id from the agent's manifest provenance, such as MIT or Apache-2.0. | |
| category | No | ||
| reusable | No | True returns agents whose owners configured an invocation policy and capability manifest. | |
| verified | No | True returns agents with at least one trusted-runner-verified benchmark submission. | |
| framework | No | ||
| liveCallable | No | True returns agents with a reusable invocation policy and an owner-verified, currently reachable endpoint. | |
| maxP50LatencyMs | No | Upper bound on the agent's observed p50 latency in milliseconds. | |
| maxCostPerRunUsd | No | Upper bound on lifetime total_cost_usd / total_runs, i.e. average observed cost per run. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, etc. The description adds one behavioral detail: 'Owner telemetry and controlled benchmark evidence are returned separately.' This provides useful context beyond annotations, but does not fully disclose all behaviors (e.g., pagination, default sorting).
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: two sentences, no wordiness. It front-loads the purpose and then adds a behavioral note. Every sentence contributes value.
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 12 parameters and no output schema, the description lacks details on return format, pagination, sorting behavior, and how parameters interact. It is adequate but incomplete for a complex search 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?
Schema description coverage is 58% (7 of 12 parameters have descriptions). The description lists searchable dimensions (task, capability, etc.) which align with some parameters, adding context. However, it does not explain parameters without schema descriptions (e.g., sort, limit, maxP50LatencyMs) beyond what the schema provides, so it partially compensates but not fully.
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's purpose: to find public agents by multiple criteria (task, capability, category, etc.), distinguishing it from sibling tools like get_agent and list_benchmarks. The verb 'Find' and resource 'public agents' are specific and unambiguous.
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 does not provide any guidance on when to use this tool versus alternatives (e.g., when to use get_agent for a specific agent or list_benchmarks for benchmarks). No when-not-to-use or contextual exclusions are mentioned.
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!
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI agents to create, share, discover, and execute reusable multi-step workflow templates.MIT
- Flicense-qualityDmaintenanceEnables searching for AI agents by keywords or categories, allowing users to discover tools like coding agents, GUI agents, or industry-specific assistants across marketplaces.48
- Alicense-quality-maintenanceSearch and discover 500+ tools, APIs, and services for AI agents. Browse 15 categories, get recommendations, and access structured metadata including auth methods, free tiers, and example calls.1
- AlicenseAqualityCmaintenanceEnables AI agents to autonomously manage and improve execution processes for repetitive task types by storing reusable task contexts with associated artifacts (practices, rules, prompts, learnings) and providing full-text search across historical best practices.81MIT