Skip to main content
Glama

Server Details

Authenticated async GPT-5.6-sol Agent agent with status polling and artifact results.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Tool DescriptionsA

Average 4.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool addresses a completely distinct concern: identity/metadata, creating a run, fetching status, and fetching results. There is no overlap or ambiguity in their purposes.

Naming Consistency4/5

The names follow a clear agentfarm_ prefix pattern, with three using verb_noun (create_run, get_run_result, get_run_status). 'agent_info' is a minor deviation as it lacks an explicit verb, but the pattern remains predictable.

Tool Count5/5

Four tools is an appropriate scope for a simple asynchronous task runner. Each tool has a clear role, and no unnecessary tools exist.

Completeness4/5

The core lifecycle of create, status, and result is covered completely. A cancel operation or listing runs could be added but is not essential for the server's apparent purpose.

Available Tools

5 tools
agentfarm_agent_infoGet GPT-5.6-sol Agent access informationA
Read-onlyIdempotent
Inspect

Returns this agent's identity, listed per-task price, MCP endpoint, and access URL. This metadata call does not run the model and does not require a bearer token.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable context by stating 'does not run the model and does not require a bearer token,' which clarifies authentication requirements and confirms the absence of side effects beyond what annotations imply.

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, focused sentence that immediately states the return value and key behavioral traits. It contains no filler or repetition, and every clause adds meaningful information.

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?

With no parameters, no output schema, and clear annotations, the description supplies all necessary information: what it returns, that it is metadata-only, and that no token is needed. It is fully complete for an agent to decide when to call this tool.

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?

The tool has zero parameters, so the baseline is 4. The description enumerates the return fields (identity, price, endpoint, URL), which helps the agent understand the tool's output, and there are no parameters that need additional explanation.

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 'Returns this agent's identity, listed per-task price, MCP endpoint, and access URL,' using a specific verb and resource. It is distinct from sibling tools that all deal with run lifecycle (create_run, get_run_result, get_run_status).

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?

The description provides clear context: it is a metadata call that does not execute the model and requires no bearer token, implying it is for pre-run configuration or informational purposes. It does not explicitly name alternatives, but the sibling set makes the distinction obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

agentfarm_cancel_runCancel AgentFarm runA
DestructiveIdempotent
Inspect

Cancels an authenticated queued or running run.

ParametersJSON Schema
NameRequiredDescriptionDefault
run_idYesAgentFarm run identifier.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare destructiveHint=true, readOnlyHint=false, and idempotentHint=true, so the safety profile is covered. The description adds the 'queued or running' constraint and an 'authenticated' qualifier, but does not discuss side effects such as what happens to partial results or whether cancellation is reversible.

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, front-loaded sentence with no filler words. Every element — the verb, the object, and the state scope — earns its place.

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?

For a one-parameter tool with rich annotations, the description plus annotations are nearly complete. Minor gaps remain: it doesn't state what the tool returns on success or how it behaves for non-cancellable states like completed runs, but the simplicity keeps it adequate.

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 coverage is 100% — the only parameter, run_id, is already documented as 'AgentFarm run identifier.' The description's mention of 'queued or running' indirectly clarifies which run_id values are valid targets, but the schema carries most of the semantic weight.

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 uses a specific verb ('Cancels') with a clear resource ('run') and adds a meaningful state scope ('queued or running'). This distinguishes it from the sibling tools, which are info, create, get result, and get status tools — none of which perform cancellation.

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 state qualifier 'queued or running' implies when the tool applies, but there is no explicit guidance about when not to use it or which alternative to prefer. No exclusions are stated (e.g., that completed runs cannot be cancelled) and no sibling tool is referenced.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

agentfarm_create_runCreate a GPT-5.6-sol Agent runAInspect

Queues an authenticated asynchronous task. This can consume paid model capacity. Poll with agentfarm_get_run_status, then read agentfarm_get_run_result.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesTask for the agent to complete.
task_inputNoOptional JSON-compatible context or input data for the task.
idempotency_keyNoOptional retry key; the same key and input return the original run.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations, the description discloses that the task is authenticated, asynchronous, and can consume paid model capacity. It also communicates the expected lifecycle (queue, poll, read), which is valuable context not available from the annotations or schema.

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 two sentences with the core action first and the cost/usage context second. It avoids filler, states the most important operational facts, and is well front-loaded.

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?

For an async creation tool with no output schema, this description covers the key operational facts: queue, auth, cost, and the follow-up polling/reading workflow using named siblings. The only minor omission is an explicit statement of what create_run returns (e.g., a run identifier), though this is strongly implied by the polling instructions.

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 100%, so the schema already documents task, task_input, and idempotency_key thoroughly. The description does not add parameter-specific meaning beyond what the schema provides, so the baseline score of 3 applies.

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 uses a specific verb ('Queues') with a clear resource ('an authenticated asynchronous task') and immediately distinguishes the tool from its siblings by naming the polling and result-reading tools. An agent can tell this creates/runs a task rather than inspecting or canceling it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly names agentfarm_get_run_status and agentfarm_get_run_result and ties them to the post-creation workflow ('Poll with..., then read...'). This gives the agent a clear sequence and identifies which sibling tools are used after creation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

agentfarm_get_run_resultGet AgentFarm run resultA
Read-onlyIdempotent
Inspect

Returns the final summary and artifact download URLs for an authenticated run.

ParametersJSON Schema
NameRequiredDescriptionDefault
run_idYesAgentFarm run identifier.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only, idempotent, non-destructive behavior. The description adds the 'authenticated' prerequisite and specifies that it returns final summary and artifact URLs, which gives useful context about what the tool does beyond the 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?

The description is a single concise sentence with no filler or redundant information. It is front-loaded with the primary action and immediately states the output.

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?

For a simple get-style tool with one parameter and strong annotations, the description adequately covers the return content. It does not explain error handling or prerequisites beyond 'authenticated', but these are not critical given the tool's simplicity and the absent output schema.

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?

The schema already describes run_id as 'AgentFarm run identifier' with 100% coverage. The description does not add additional parameter details, so it meets the baseline but does not exceed it.

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 uses a specific verb ('Returns') and names the resource ('final summary and artifact download URLs') for an authenticated run. It clearly distinguishes this from sibling tools like agentfarm_get_run_status by focusing on the final result rather than status.

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?

The phrase 'for an authenticated run' provides clear context that this tool is used after a run has been executed and requires authentication. It does not explicitly name alternatives or exclusions, but the distinction from sibling tools is implicit through the 'final' wording.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

agentfarm_get_run_statusGet AgentFarm run statusA
Read-onlyIdempotent
Inspect

Returns queued, running, succeeded, or failed status for an authenticated run.

ParametersJSON Schema
NameRequiredDescriptionDefault
run_idYesAgentFarm run identifier.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the core safety profile is covered. The description adds the 'authenticated run' requirement, which is not in the annotations, and lists the specific status values returned, providing meaningful context beyond structured metadata.

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 concise sentence that front-loads the key information (what it returns) and specifies the exact statuses. Every word adds value, with no redundancy or irrelevant detail.

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?

For a simple read-only status-checking tool with one parameter, good annotations, and no output schema, the description fully covers what the agent needs: it clarifies the run status values and the authentication requirement. Nothing critical is missing.

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?

The schema covers the single parameter run_id with a clear description ('AgentFarm run identifier'), achieving 100% schema description coverage. The tool description does not add additional parameter semantics, so it does not exceed the baseline set by the schema.

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 verb ('Returns') and the resource ('status for an authenticated run'), enumerating the possible values (queued, running, succeeded, failed). This distinguishes it from sibling tools like agentfarm_get_run_result (which likely retrieves run data) and agentfarm_create_run (which creates runs).

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 checking run status, but it does not explicitly say when to use this tool versus alternatives like get_run_result or get_run_info. No exclusion criteria or scenario guidance is provided, making it adequate but not highly instructive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources