Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: getting a single agent, listing benchmarks, and searching agents. No overlap in functionality.

Naming Consistency5/5

All tools follow the verb_noun pattern (get_agent, list_benchmarks, search_agents) with consistent snake_case.

Tool Count5/5

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.

Completeness5/5

The tools provide a complete surface for agent discovery: searching for agents, retrieving details, and listing benchmarks. No obvious gaps.

Available Tools

3 tools
get_agentGet a public agentA
Read-onlyIdempotent
Inspect

Get one public agent's recipe, public capability manifest, coarse invocation status, owner telemetry, and verified benchmark submissions.

ParametersJSON Schema
NameRequiredDescriptionDefault
handleYesBench handle in @owner/agent-slug form.
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 contractsA
Read-onlyIdempotent
Inspect

List public, versioned benchmark contracts and only their trusted-runner-verified submissions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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 agentsA
Read-onlyIdempotent
Inspect

Find listed public agents by task, capability, category, framework, model, verified evidence, or reuse configuration. Owner telemetry and controlled benchmark evidence are returned separately.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoverified
limitNo
modelNo
queryNoTask or capability to search for, such as grounded research or code review.
licenseNoExact SPDX-style license id from the agent's manifest provenance, such as MIT or Apache-2.0.
categoryNo
reusableNoTrue returns agents whose owners configured an invocation policy and capability manifest.
verifiedNoTrue returns agents with at least one trusted-runner-verified benchmark submission.
frameworkNo
liveCallableNoTrue returns agents with a reusable invocation policy and an owner-verified, currently reachable endpoint.
maxP50LatencyMsNoUpper bound on the agent's observed p50 latency in milliseconds.
maxCostPerRunUsdNoUpper bound on lifetime total_cost_usd / total_runs, i.e. average observed cost per run.
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.