Fable 5 Agent
Server Details
Authenticated async Fable 5 Agent agent with status polling and artifact results.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 5 tools
Each tool targets a distinct operation: agent metadata, create, cancel, status polling, and result retrieval. The status and result tools are clearly separated since one returns lifecycle state and the other returns final artifacts.
All tools share the agentfarm_ prefix and mostly follow a clear verb_object pattern (cancel_run, create_run, get_run_status, get_run_result). agentfarm_agent_info is a minor deviation because it uses a noun phrase rather than a verb, but it is still predictable and consistent with the overall style.
Five tools is well-scoped for an async run lifecycle: create, cancel, check status, fetch result, and inspect agent metadata. There is no unnecessary bloat or missing essential action.
The tool set covers the full async task lifecycle from creation through cancellation, status polling, and result retrieval. The agent info call rounds out the surface for discovering the agent's identity and pricing. No critical operations appear to be missing.
Available Tools
5 toolsagentfarm_agent_infoGet Fable 5 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 | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, destructiveHint, idempotentHint. Description adds context beyond annotations: 'does not run the model' and 'does not require a bearer token.' This enriches the behavioral profile.
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?
Two sentences, front-loaded with the core action. Every sentence adds value; no redundancy or filler.
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 no output schema, description lists all return values explicitly. Tool is simple; this is sufficient. Could mention price unit, but not necessary.
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?
No parameters in schema, so baseline is 4. Description adds meaning by listing returned fields (identity, price, endpoint, URL), compensating for lack of output 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 uses specific verbs and resources: 'Returns this agent's identity, listed per-task price, MCP endpoint, and access URL.' It clearly distinguishes from siblings (create run, get run result, get run status) by stating it is metadata, not a run operation.
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 states when to use: when you need agent info without running the model, and it does not require a bearer token. It implies not to use when you need to run a model, which differentiates from sibling tools.
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. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true and idempotentHint=true, covering the safety profile. The description adds a meaningful constraint—only queued or running runs can be cancelled—but does not disclose what happens after cancellation (e.g., irreversible, async, effect on results). This adds some value but not rich behavioral context.
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 zero wasted words. It conveys the action, resource, and constraint efficiently.
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, destructive, idempotent tool, the schema and annotations cover most of what an agent needs. The main gap is that no output schema exists and the description does not mention what the tool returns after a successful cancel or how errors (e.g., run already finished) are surfaced, which would be useful but not critical.
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 input schema covers the sole parameter run_id with 100% description accuracy ('AgentFarm run identifier'). The tool description adds no additional parameter meaning beyond what the schema already provides, so the baseline 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 states a specific verb ('Cancels'), a resource ('AgentFarm run'), and a scope qualifier ('authenticated queued or running'). This clearly distinguishes it from sibling tools like create_run, get_run_status, and get_run_result, so an agent knows exactly what the tool does.
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 this tool is only for queued or running runs, but it does not explicitly say when to use it versus alternatives or mention any exclusions. Context about siblings is present in the signal data but not referenced in the description itself.
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 Fable 5 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. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful behavioral context beyond the annotations: the task is asynchronous, requires authentication, and can consume paid model capacity. This is especially valuable for a mutation-like operation where cost and async behavior are critical for agent decision-making. No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no filler. It front-loads the core action, then adds a critical cost warning and a clear follow-up path. Every sentence 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 tool with no output schema, the description adequately explains the full lifecycle: creation, polling, and result retrieval. It also surfaces the cost and auth requirements in one short description. Combined with the complete parameter schema, the agent has everything needed to call this tool correctly.
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 input schema has 100% parameter description coverage, so the baseline is 3. The description itself does not add parameter-level detail beyond what the schema already provides, but the schema already sufficiently documents 'task', 'task_input', and 'idempotency_key'.
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') and resource ('an authenticated asynchronous task'), clearly identifying the tool as the creation/queueing step. It also implicitly distinguishes from sibling tools by referencing the follow-up status and result tools, so an agent understands this is not the poll or read operation.
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 clearly states the intended workflow: queue a task, then poll with agentfarm_get_run_status, then read agentfarm_get_run_result. This gives clear context on when to use this tool relative to its siblings. It does not explicitly state when not to use it or mention alternative creation methods, but the workflow guidance is strong.
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. |
TDQS
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. |
TDQS
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- Added
agentfarm_cancel_run - Changed
agentfarm_create_run1 field changed- added
Input schema / properties / idempotency_keyAdded value: +{ + "description": "Optional retry key; the same key and input return the original run.", + "maxLength": 128, + "type": "string" +}
4 tool updates
- First observed
agentfarm_agent_info - First observed
agentfarm_create_run - First observed
agentfarm_get_run_result - First observed
agentfarm_get_run_status
Related MCP Connectors
Authenticated async Sonnet 5 Agent agent with status polling and artifact results.
Authenticated async Opus 4.8 Agent agent with status polling and artifact results.
Authenticated async GPT-5.6-sol Agent agent with status polling and artifact results.
Authenticated async GPT-5.6-luna Agent agent with status polling and artifact results.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to safely run bounded, sandboxed tasks on remote machines with persistent state and reviewable artifacts.Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables task state management for AI agents with secure credential handling and optional client-side encryption via a local stdio proxy.MIT
- FlicenseNot gradedqualityAmaintenanceAgent-native API client for executing REST, GraphQL, WebSocket, SSE, and gRPC requests from MCP-capable agents, with token-efficient responses and file-based collections.-
- AlicenseAqualityBmaintenanceEnables AI agents to interact with NexusAPI's asynchronous generation API, including model discovery, schema inspection, task creation, and status retrieval.4MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.