No earlier complete public snapshot yet. Watch would start a baseline on the next complete check.
Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
Tools and declared exposure
Server annotations are declarations, not verified behavior.
Show 5 of 5 server-provided tool definitions
agentfarm_agent_info
Declared read-onlyShow server-provided details
Get Sonnet 5 Agent access information
Server description (copied; language not verified)
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.
Input schema (server-provided preview — do not copy)
Annotation present; effect not classifiedShow server-provided details
Create a Sonnet 5 Agent run
Server description (copied; language not verified)
Queues an authenticated asynchronous task. This can consume paid model capacity. Poll with agentfarm_get_run_status, then read agentfarm_get_run_result.
Input schema (server-provided preview — do not copy)
{
"type": "object",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"minLength": 1,
"description": "Task for the agent to complete."
},
"task_input": {
"description": "Optional JSON-compatible context or input data for the task."
},
"idempotency_key": {
"type": "string",
"maxLength": 128,
"description": "Optional retry key; the same key and input return the original run."
}
},
"additionalProperties": false
}
agentfarm_get_run_result
Declared read-onlyShow server-provided details
Get AgentFarm run result
Server description (copied; language not verified)
Returns the final summary and artifact download URLs for an authenticated run.
Input schema (server-provided preview — do not copy)