Agent Traffic Lab
Server Details
Find a verified executable provider for a task, with callable handoff and fallback.
- Status
- Healthy
- Uptime
- 100.0% over 36 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2024-11-05
- URL
TDQS
Scored across 2 tools
atl_decide is for selecting the right tool or provider, while atl_outcome is for reporting the execution result. Their purposes are clearly distinct and non-overlapping, leaving no ambiguity for an agent.
Both tools share the atl_ prefix and use lowercase snake_case, but atl_decide is a verb while atl_outcome is a noun, creating a minor inconsistency in the pattern. Despite this, the naming is intuitive and predictable.
With only two tools, the set is minimal; however, the domain is narrow and the two tools form a coherent decision-feedback loop. The count feels slightly thin for a generic toolkit, but it is appropriate for the server's focused purpose.
The server covers the entire lifecycle of a decision task: selecting the right capability and reporting the outcome. There are no obvious dead ends or missing operations within the stated domain.
Available Tools
2 toolsatl_decideAInspect
Find the right tool, MCP server, or provider to execute a task. Call this when you need a tool for a task, need to find a provider, need to choose an MCP server, are unsure which tool or provider to use, need a reliable executable provider, have multiple possible providers or tools, hit a tool or provider failure, or need an alternative, fallback, or a way to route a task to the right capability. Just pass the task in plain natural language; no other fields are needed. After you execute the selected provider/tool, report the real result with atl_outcome.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Natural-language task. ATL infers the required capability when possible. | |
| timeout_ms | No | Optional time limit for the decision request in milliseconds. | |
| constraints | No | Optional hard requirements the selected provider must meet. | |
| max_retries | No | Optional maximum retries allowed for the decision request. | |
| preferences | No | Optional trade-offs such as cost, latency, or reliability. | |
| auth_available | No | Whether the caller can authenticate to the selected provider. | |
| desired_outcome | No | Optional result the caller wants from the task. | |
| required_capability | No | Capability the selected provider must support. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It explains that only the plain-language task is required ('no other fields are needed'), that it selects a provider/tool for the agent to execute rather than executing itself, and that results should be reported via atl_outcome. This gives a clear behavioral picture, though it doesn't describe return format or failure modes.
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?
Four sentences, front-loaded with the main purpose. The long list of trigger conditions is exhaustive but still readable and earns its place; not overly wordy.
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 8-parameter tool with no output schema and no annotations, the description covers purpose, when to use, what input to pass, and the after-action (atl_outcome). It does not detail return values or optional parameter usage, but the schema covers the latter and the workflow is clear.
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% (all 8 parameters documented). Per the rubric, baseline is 3. The description adds the key note that 'no other fields are needed' and the task suffices, but does not add detail beyond the schema for the optional parameters. This matches the baseline.
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 explicitly states the tool's purpose: 'Find the right tool, MCP server, or provider to execute a task.' It uses a specific verb ('Find') and clear resource types, and distinguishes from sibling atl_outcome by directing reporting after execution.
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 an extensive list of 'Call this when' triggers (need a tool, provider, MCP server, unsure, multiple options, failure, fallback/routing). It also clarifies what to do after: 'After you execute the selected provider/tool, report the real result with atl_outcome,' which guides alternative usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atl_outcomeAInspect
Call this after executing an ATL decision to report the real result: success, failure, timeout, payment or auth failure, unusable result, or any other real execution outcome. Reporting what actually happened is how future routing decisions can improve.
| Name | Required | Description | Default |
|---|---|---|---|
| cancelled | No | Whether execution was cancelled before completion. | |
| error_code | No | Provider error code observed during execution. | |
| request_id | No | Caller request ID associated with the prior ATL decision. | |
| session_id | No | MCP session ID returned by initialize. | |
| http_status | No | HTTP status returned by the provider, when applicable. | |
| provider_id | No | Provider selected by ATL for the prior decision. | |
| failure_type | No | Category of the observed execution failure. | |
| observed_cost | No | Observed provider execution cost. | |
| correlation_id | No | Caller correlation ID linking this result to related work. | |
| outcome_status | Yes | Final real-world execution result, such as SUCCESS or FAILURE. | |
| attempt_outcomes | No | Observed results for individual provider execution attempts. | |
| final_provider_id | No | Provider that actually completed execution, if it changed. | |
| decision_reference | Yes | ATL decision ID returned by the prior atl_decide call. | |
| observed_latency_ms | No | Observed provider execution latency in milliseconds. | |
| outcome_correlation_token | Yes | ATL token returned with the prior decision to authorize this outcome link. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It does convey that the tool reports what actually happened and that the report influences future routing, giving some behavioral context. However, it does not disclose prerequisites like the correlation token, idempotency, or error handling. The schema covers the token, but the description alone omits important behavioral details.
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. The first sentence is front-loaded with the action and timing, and the second briefly explains the value. Every word earns its place; there is no redundant content.
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?
Despite the tool having 15 parameters, the required ones are clearly implied: decision_reference and outcome_correlation_token come from the prior decision, and outcome_status is the core. The schema descriptions fill in the field-level details. However, the description does not mention the return value or clarify whether the tool can be called multiple times, leaving some gaps given the lack of an 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?
Schema coverage is 100%, so the baseline is 3. The description adds richer examples of outcome statuses (timeout, payment or auth failure, unusable result) beyond the schema's 'SUCCESS or FAILURE', which is helpful. However, it does not map these to specific parameters or clarify when to fill optional fields like error_code or observed_latency_ms.
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's purpose: report the real result after executing an ATL decision. It uses the verb 'report' and specifies the resource (outcome of an ATL decision), and it lists concrete example outcomes (success, failure, timeout, etc.), making it easy to distinguish from the sibling atl_decide which is about making decisions.
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 says 'Call this after executing an ATL decision', giving clear timing and context. It does not explicitly name alternatives or exclusions, but since the only sibling is atl_decide (the precursor), the usage is well understood. The rationale about improving future routing decisions further reinforces when to use it.
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.
1 tool update
- Changed
atl_decide7 fields changed- removed
Input schema / properties / caller_idRemoved value: -{ - "description": "Optional caller identity for the request.", - "type": "string" -} - removed
Input schema / properties / correlation_idRemoved value: -{ - "description": "Caller correlation ID shared across related work.", - "type": "string" -} - removed
Input schema / properties / idempotency_keyRemoved value: -{ - "description": "Optional key for safely deduplicating repeated decision requests.", - "type": "string" -} - added
Input schema / properties / max_retries / maximumAdded value: +2 - removed
Input schema / properties / request_idRemoved value: -{ - "description": "Caller request ID for tracing this decision.", - "type": "string" -} - removed
Input schema / properties / session_idRemoved value: -{ - "description": "MCP session ID returned by initialize.", - "type": "string" -} - removed
Input schema / properties / tenant_idRemoved value: -{ - "description": "Optional tenant identity for the request.", - "type": "string" -}
2 tool updates
- Changed
atl_decide13 fields changed- added
Input schema / properties / auth_available / descriptionAdded value: +"Whether the caller can authenticate to the selected provider." - added
Input schema / properties / caller_id / descriptionAdded value: +"Optional caller identity for the request." - added
Input schema / properties / constraints / descriptionAdded value: +"Optional hard requirements the selected provider must meet." - added
Input schema / properties / correlation_id / descriptionAdded value: +"Caller correlation ID shared across related work." - added
Input schema / properties / desired_outcome / descriptionAdded value: +"Optional result the caller wants from the task." - added
Input schema / properties / idempotency_key / descriptionAdded value: +"Optional key for safely deduplicating repeated decision requests." - added
Input schema / properties / max_retries / descriptionAdded value: +"Optional maximum retries allowed for the decision request." - added
Input schema / properties / preferences / descriptionAdded value: +"Optional trade-offs such as cost, latency, or reliability." - added
Input schema / properties / request_id / descriptionAdded value: +"Caller request ID for tracing this decision." - added
Input schema / properties / required_capability / descriptionAdded value: +"Capability the selected provider must support." - added
Input schema / properties / session_id / descriptionAdded value: +"MCP session ID returned by initialize." - added
Input schema / properties / tenant_id / descriptionAdded value: +"Optional tenant identity for the request." - added
Input schema / properties / timeout_ms / descriptionAdded value: +"Optional time limit for the decision request in milliseconds."
- Changed
atl_outcome15 fields changed- added
Input schema / properties / attempt_outcomes / descriptionAdded value: +"Observed results for individual provider execution attempts." - added
Input schema / properties / cancelled / descriptionAdded value: +"Whether execution was cancelled before completion." - added
Input schema / properties / correlation_id / descriptionAdded value: +"Caller correlation ID linking this result to related work." - added
Input schema / properties / decision_reference / descriptionAdded value: +"ATL decision ID returned by the prior atl_decide call." - added
Input schema / properties / error_code / descriptionAdded value: +"Provider error code observed during execution." - added
Input schema / properties / failure_type / descriptionAdded value: +"Category of the observed execution failure." - added
Input schema / properties / final_provider_id / descriptionAdded value: +"Provider that actually completed execution, if it changed." - added
Input schema / properties / http_status / descriptionAdded value: +"HTTP status returned by the provider, when applicable." - added
Input schema / properties / observed_cost / descriptionAdded value: +"Observed provider execution cost." - added
Input schema / properties / observed_latency_ms / descriptionAdded value: +"Observed provider execution latency in milliseconds." - added
Input schema / properties / outcome_correlation_token / descriptionAdded value: +"ATL token returned with the prior decision to authorize this outcome link." - added
Input schema / properties / outcome_status / descriptionAdded value: +"Final real-world execution result, such as SUCCESS or FAILURE." - added
Input schema / properties / provider_id / descriptionAdded value: +"Provider selected by ATL for the prior decision." - added
Input schema / properties / request_id / descriptionAdded value: +"Caller request ID associated with the prior ATL decision." - added
Input schema / properties / session_id / descriptionAdded value: +"MCP session ID returned by initialize."
1 tool update
- Changed
atl_decide1 field changed- added
Input schema / properties / task / descriptionAdded value: +"Natural-language task. ATL infers the required capability when possible."
2 tool updates
- First observed
atl_decide - First observed
atl_outcome
Related MCP Connectors
Find a live agent by describing the task, then call its skills. Availability is probe-verified.
Name the job, not the vendor. Routes a provider, fails over, catalog off the tool list.
Outcome-first agent fallback: free discovery, minimal routing, declared costs, verified execution.
Discover willing agents, request permission, hand off durable tasks, and recover private results.
Related MCP Servers
- AlicenseBqualityDmaintenanceVerifiable agent-to-agent task handoff with signed provenance chain.571 PyPIMIT
- AlicenseNot gradedqualityBmaintenanceEnables a model in Claude Code, Codex, or Grok to allocate tasks to other agent CLIs on the machine, choosing the lane, model, and reasoning effort, and have a different model verify the result blind.Apache 2.0
- AlicenseNot gradedqualityAmaintenanceAn interface-independent task router for AI agents that selects the cheapest capable backend model via MCP, runs tasks headless, verifies results, and escalates on failure.555 npm2Apache 2.0
- AlicenseAqualityCmaintenanceRoutes tasks from AI agents to human workers via webhook providers with smart matching, fallback chains, and proof-of-completion tracking.839 npmMIT
Glama MCP Gateway
Add one secure layer between your agents and this server.