Skip to main content
Glama

Server Details

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

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.

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 4.1/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: agent info, creating a run, checking status, and fetching results. There is no overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent 'agentfarm_verb_noun' pattern (e.g., agentfarm_create_run, agentfarm_get_run_status), making the naming predictable and intuitive.

Tool Count5/5

With 4 tools, the set is minimal yet covers the essential workflow for asynchronous task execution: create, poll status, and retrieve results. The count is well-scoped for this purpose.

Completeness4/5

The tools cover the core lifecycle of an async run (create, status, result) but lack cancellation or listing of runs, which are minor gaps for certain use cases.

Available Tools

4 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

Behavior5/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds valuable context: it does not run the model and does not require authentication, which are behavioral traits 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?

Two sentences: the first states the purpose, the second clarifies behavioral characteristics. Every word is necessary, and the information is front-loaded.

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 tool with no parameters, no output schema, and clear annotations, the description covers the essential information needed to use it correctly. It mentions specific return fields, making it complete for its simplicity.

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 no parameters, and schema coverage is 100%. The description adds meaning by specifying the returned information (identity, price, endpoint, URL) beyond just stating the schema structure. With 0 parameters, a baseline of 4 is appropriate.

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 that the tool returns the agent's identity, per-task price, MCP endpoint, and access URL. It explicitly distinguishes itself from sibling tools by noting it is a metadata call that does not run the model.

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 indicates the tool does not require a bearer token and is a metadata call, implying it should be used before running the agent. However, it does not explicitly state when not to use it or provide direct alternatives, though sibling tool names give context.

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.
Behavior4/5

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

Annotations show readOnlyHint=false (write operation) and destructiveHint=false. The description adds key behavioral context: that it queues an asynchronous task, consumes paid model capacity, and returns a run that must be polled. No contradictions with 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 extremely concise: three short sentences that convey purpose, cost implication, and follow-up workflow. No unnecessary words, all sentences earn their 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?

Given 2 params, no output schema, and annotations, the description adequately explains the asynchronous nature, cost, and follow-up steps. It could mention authentication requirement explicitly but 'authenticated' is present. Return values are handled by sibling tools.

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% (both 'task' and 'task_input' have descriptions in schema). The description only vaguely refers to 'task' without adding new parameter details. Baseline 3 is appropriate since schema already covers parameter meaning.

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 title 'Create a GPT-5.6-sol Agent run' and description 'Queues an authenticated asynchronous task' clearly state the tool's action. It explicitly distinguishes from siblings (agentfarm_get_run_status, agentfarm_get_run_result) by mentioning polling and result reading workflow.

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 implies usage context by noting the asynchronous, paid nature and suggesting a polling workflow. It doesn't explicitly state when to use or avoid, but the sibling structure makes it obvious this is the creation step.

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 readOnlyHint=true and idempotentHint=true. The description adds value by specifying that the tool returns 'final summary and artifact download URLs' and requires an 'authenticated run', implying auth and completion state. This goes 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?

Single sentence, 12 words, front-loaded with action verb. No wasted words; every element contributes to clarity.

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?

Given low complexity (1 param, no output schema), the description is mostly complete. It lacks details about the structure of the summary or when the run is considered 'final', but annotations and sibling tool names provide enough context for an agent.

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% with run_id described as 'AgentFarm run identifier.' The description does not add any extra meaning beyond the schema. Baseline 3 is appropriate.

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 specific resource 'final summary and artifact download URLs for an authenticated run'. This distinguishes it from siblings like agentfarm_get_run_status (status only) and agentfarm_create_run (creation).

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 guidance on when to use this tool versus alternatives, such as when the run is complete or how it differs from agentfarm_get_run_status. No explicit context or exclusions are given.

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.
Behavior3/5

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

Annotations provide readOnlyHint, idempotentHint, destructiveHint. Description adds 'authenticated run' but does not disclose error behavior or side effects; minimal added value 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 sentence, no filler, front-loaded with key information. Every word serves a purpose.

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?

Covers return values and statuses; lacks mention of error handling for unknown run_id but acceptable for a simple status tool with no 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?

100% schema description coverage with parameter 'run_id' described as 'AgentFarm run identifier.' Tool description adds no additional parameter semantics beyond 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?

Specifies verb 'Returns', resource 'status for an authenticated run', and explicitly lists possible status values (queued, running, succeeded, failed), clearly distinguishing from sibling tools like agentfarm_get_run_result.

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?

Implies use for checking run status but provides no explicit guidance on when to use versus alternatives such as agentfarm_get_run_result or agentfarm_create_run.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources