GPT-5.6-sol Agent
Server Details
Authenticated async GPT-5.6-sol Agent agent with status polling and artifact results.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored.
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.
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.
Four tools is an appropriate scope for a simple asynchronous task runner. Each tool has a clear role, and no unnecessary tools exist.
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 toolsagentfarm_agent_infoGet GPT-5.6-sol Agent access informationARead-onlyIdempotentInspect
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.
| 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, 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.
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.
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.
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.
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.
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 runADestructiveIdempotentInspect
Cancels an authenticated queued or running run.
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | Yes | AgentFarm run identifier. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Task for the agent to complete. | |
| task_input | No | Optional JSON-compatible context or input data for the task. | |
| idempotency_key | No | Optional retry key; the same key and input return the original run. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 resultARead-onlyIdempotentInspect
Returns the final summary and artifact download URLs for an authenticated run.
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | Yes | AgentFarm run identifier. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 statusARead-onlyIdempotentInspect
Returns queued, running, succeeded, or failed status for an authenticated run.
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | Yes | AgentFarm run identifier. |
Tool Definition Quality
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.
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.
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.
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.
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.
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
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Authenticated async GPT-5.6-luna Agent agent with status polling and artifact results.
Authenticated async Sonnet 5 Agent agent with status polling and artifact results.
Authenticated async Fable 5 Agent agent with status polling and artifact results.
Authenticated async Opus 4.8 Agent agent with status polling and artifact results.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables Claude Code to delegate tasks to OpenCode subagents asynchronously, with tools for starting tasks, polling status, and fetching results.72732MIT
- AlicenseNot gradedqualityBmaintenanceEnables ChatGPT (or any MCP client) to delegate coding tasks to a local Hermes-backed agent with async job management, supporting read-only investigation, implementation, and continuation of sessions via secure MCP tunnel.1MIT
- AlicenseAqualityDmaintenanceEnables AI agents to read chain data, execute transactions, swap tokens, and manage wallets on Solana through 38 tools across 7 modules. Supports write operations with a private key and includes built-in prompts for common workflows.381MIT
- AlicenseAqualityBmaintenanceEnables AI agents to interact with NexusAPI's asynchronous generation API, including model discovery, schema inspection, task creation, and status retrieval.4MIT