Agent Traffic Lab
Server Details
Find a verified executable provider for a task, with callable handoff and fallback.
- 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.
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.
Tool Definition Quality
Average 3.3/5 across 2 of 2 tools scored.
atl_decide handles pre-execution routing decisions while atl_outcome reports post-execution results. They are clearly distinct and complementary, covering different phases of the decision loop.
Both tools share the 'atl_' prefix, but one uses a verb (decide) and the other a noun (outcome), creating a slight inconsistency in naming pattern. The shared prefix and clear semantics keep it mostly predictable.
With only two tools, the server is minimal but forms a coherent pair for the decision-outcome loop. The count feels thin for a traffic lab, yet each tool has a distinct role.
The decide-outcome pair covers the full lifecycle of a routing decision, including reporting real results for improvement. No obvious gaps exist within the stated purpose, though additional tools for managing policies or viewing history could enhance it.
Available Tools
2 toolsatl_decideBInspect
Before execution, call ATL to pick the best provider/model/service/tool, choose an execution route, find a fallback, switch after provider failure, and choose cheaper, faster, reliable, available options under region/policy constraints.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | ||
| caller_id | No | ||
| tenant_id | No | ||
| request_id | No | ||
| session_id | No | ||
| timeout_ms | No | ||
| constraints | No | ||
| max_retries | No | ||
| preferences | No | ||
| auth_available | No | ||
| correlation_id | No | ||
| desired_outcome | No | ||
| idempotency_key | No | ||
| required_capability | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does list behaviors (picking, choosing, fallback, switching), but it does not disclose what the tool returns, whether it has side effects, error handling, or what 'ATL' is. The lack of an output schema amplifies this gap, leaving the tool's behavior under-specified.
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, dense run-on sentence that packs multiple actions. It is not front-loaded with the most critical information and could be broken into clearer segments. It is not overly long, but its structure hampers readability.
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 the tool's complexity (14 params, no annotations, no output schema), the description is far too high-level. It explains the general purpose but omits necessary context such as what 'task' should contain, how constraints/preferences are structured, what the decision output looks like, and any operational prerequisites. This is incomplete for effective tool selection and invocation.
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 has 14 parameters with 0% description coverage, so the description must compensate. It hints at 'region/policy constraints' and 'cheaper, faster, reliable, available options' which map to `constraints` and `preferences`, but it does not explain the meaning or format of any specific parameter, including the required `task`. This is insufficient for the parameter count.
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: to pick the best provider/model/service/tool, choose an execution route, find a fallback, and switch after provider failure. This is a specific verb+resource combination that distinguishes it from the sibling tool atl_outcome, as it is explicitly positioned as a pre-execution decision tool.
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 usage context: 'Before execution' tells when to use it, and the list of actions (pick, choose, fallback, switch) implies common scenarios. However, it does not explicitly mention alternatives or when not to use it, such as contrasting with atl_outcome for post-execution analysis.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atl_outcomeBInspect
Call this after executing an ATL decision to report the real result so future routing decisions can improve with better latency, cost, and failure evidence.
| Name | Required | Description | Default |
|---|---|---|---|
| cancelled | No | ||
| error_code | No | ||
| request_id | No | ||
| session_id | No | ||
| http_status | No | ||
| provider_id | No | ||
| failure_type | No | ||
| observed_cost | No | ||
| correlation_id | No | ||
| outcome_status | Yes | ||
| attempt_outcomes | No | ||
| final_provider_id | No | ||
| decision_reference | Yes | ||
| observed_latency_ms | No | ||
| outcome_correlation_token | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It mentions the feedback purpose (improving latency, cost, and failure evidence) but does not state whether the call is idempotent, what happens on duplicate reports, whether it mutates routing state, or if special permissions are needed. These are notable gaps for a reporting tool.
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 sentence with no filler, front-loaded with the action ('Call this') and timing ('after executing an ATL decision'). Every word contributes to the core message, making it highly efficient and well-structured.
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?
The tool has 15 parameters, 3 required, no output schema, and no annotations, yet the description provides only a one-line purpose. It does not explain how to construct a valid request, what values are expected, or what happens when the tool is invoked, making it severely incomplete for a tool of this complexity.
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 0%, and there are 15 parameters, so the description was expected to compensate. It only hints at latency, cost, and failure concepts without mapping them to specific fields like observed_latency_ms, observed_cost, or failure_type, and it entirely ignores the three required parameters (decision_reference, outcome_correlation_token, outcome_status).
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 ('report') and resource ('the real result of an ATL decision'), and the phrase 'after executing an ATL decision' clearly distinguishes it from the sibling tool atl_decide, which presumably makes the decision. This unambiguously identifies the tool's role in the workflow.
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 call the tool ('after executing an ATL decision'), providing clear temporal context. It does not name the sibling tool or offer explicit exclusions, but the timing inherently separates this from atl_decide, making the usage context reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- AlicenseBqualityBmaintenanceVerifiable agent-to-agent task handoff with signed provenance chain.5MIT
- Alicense-qualityAmaintenanceAn 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.4742Apache 2.0
- AlicenseAqualityBmaintenanceRoutes tasks from AI agents to human workers via webhook providers with smart matching, fallback chains, and proof-of-completion tracking.850MIT
- Alicense-qualityAmaintenanceProvides deterministic search, load, and execution operations for progressively disclosing agent capabilities (skills, MCP, CLI, HTTP/API, RAG). Enables scope-bound reference access with budgets and audit.MIT