Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsB

Average 3.3/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count3/5

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.

Completeness4/5

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 tools
atl_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYes
caller_idNo
tenant_idNo
request_idNo
session_idNo
timeout_msNo
constraintsNo
max_retriesNo
preferencesNo
auth_availableNo
correlation_idNo
desired_outcomeNo
idempotency_keyNo
required_capabilityNo
Behavior2/5

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.

Conciseness3/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
cancelledNo
error_codeNo
request_idNo
session_idNo
http_statusNo
provider_idNo
failure_typeNo
observed_costNo
correlation_idNo
outcome_statusYes
attempt_outcomesNo
final_provider_idNo
decision_referenceYes
observed_latency_msNo
outcome_correlation_tokenYes
Behavior2/5

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.

Conciseness5/5

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.

Completeness1/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources