Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.2

  • Disambiguation3/5

    Several diagnostic tools overlap: url_health_check, connectivity_problems, and content_problems all perform edge-side diagnostics with cURL/dig/MTR, though they target different symptoms. Additionally, verify_edge_ip and verify_locate_ip serve similar verification purposes. However, descriptions are detailed enough to differentiate most tools.

    Naming Consistency3/5

    Names follow a mix of verb_noun (list_edge_locations, translate_error_string) and noun phrases (url_health_check, connectivity_problems). The verb_from_edge pattern for curl, dig, mtr is consistent for those tools, but overall the set lacks a uniform naming convention.

    Tool Count5/5

    With 14 tools, the set is appropriately sized for an Akamai diagnostics server. Each tool addresses a specific network or content debugging need without excessive redundancy.

    Completeness4/5

    The server covers core diagnostic workflows: URL translation, IP verification/location, edge commands, error stats, log search, and problem detection. Missing is a location details getter and maybe a direct 'get_edge_location' but most operations are covered. Minor gaps only.

  • Average 3.8/5 across 14 of 14 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • 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 only restates the core function and adds no context about read-only behavior, response format, errors for non-edge IPs, or any other side effects or limitations.

    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, well-front-loaded sentence with no fluff. It states the action and scope efficiently.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple one-parameter tool, the description covers the essential function. However, it lacks usage context (when to use vs siblings) and any indication of output behavior, making it only minimally complete for an agent to reliably invoke it in the right situations.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema already describes the ipAddresses parameter with 'Up to 10 IP addresses to verify.' The description adds the semantic context of 'Akamai edge network membership', which enriches the meaning of the verification. However, since schema coverage is 100%, the description's contribution is marginal.

    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 action (verifies), the object (IP addresses), and the criterion (belong to Akamai edge network). It distinguishes itself from sibling tools like locate_ip and verify_locate_ip by focusing specifically on Akamai edge network membership.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives no guidance on when to use this tool versus alternatives such as verify_locate_ip or locate_ip. It does not mention any exclusions, prerequisites, or preferred usage scenarios.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description must carry the transparency burden. It discloses the core behavior: it verifies membership and returns geolocation fields. However, it does not explicitly state that the operation is read-only, nor does it describe behavior for IPs not in the Akamai network, which leaves some ambiguity.

    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, compact sentence that front-loads the primary action ('Verifies') and then lists specific return fields. Every word contributes value, with no filler or redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With no output schema, the description should clarify the return structure. It lists the geolocation fields (city, country, region, ASN, network) but does not specify whether a verification result (e.g., boolean) is also returned or what happens for non-Akamai IPs. The statement is somewhat ambiguous.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema description for ipAddress ('The IP address to verify and locate') already covers the parameter's purpose with 100% coverage. The tool description adds no additional meaning beyond restating the same function, so it meets the baseline but does not elevate it.

    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 a specific action: 'Verifies whether an IP address belongs to the Akamai edge network' followed by 'returns its geolocation details'. This distinguishes it from sibling tools like verify_edge_ip (likely just verification) and locate_ip (likely just location) by combining both capabilities in one tool.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives no guidance on when to use this tool versus alternatives. It does not mention that it combines verification and location, nor does it exclude use cases where only one function is needed, such as saying 'Use verify_edge_ip if you only need membership verification'.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description must disclose behavioral traits. It mentions the limit of 10 IPs and the return fields, which is helpful. However, it does not mention potential edge cases (e.g., invalid IPs), read-only nature, or any side effects. The transparency is adequate but not comprehensive.

    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, concise sentence that front-loads the action and resource. It includes key output details without unnecessary elaboration. Every word contributes to understanding.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple one-parameter lookup tool, the description adequately explains the input and output. It has no output schema but lists the geolocation fields, which satisfies the need to know return values. However, it lacks usage guidance and error handling details, preventing a perfect score.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema already fully describes the only parameter (ipAddresses) with high coverage, so the baseline is 3. The description repeats the 'up to 10' limit but adds no additional meaning beyond the schema, such as IP format or error behavior.

    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 locates up to 10 IP addresses and returns geolocation data with specific fields (city, country, region, ASN, network). This is a specific verb+resource pairing that distinguishes it from sibling tools like verify_locate_ip, which likely focuses on verification rather than location lookup.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no guidance on when to use this tool versus alternatives, nor does it mention exclusions or prerequisites. It simply states what the tool does without contextualizing its use cases relative to the sibling tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the full burden. It adds important behavioral context by stating 'This is an async operation that polls until complete,' which goes beyond the schema. However, it does not disclose potential side effects (e.g., generating edge requests), rate limits, or the nature of the returned result, leaving some behavior opaque.

    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 two short sentences, front-loaded with the core purpose and a key behavioral note. Every word earns its place, with no redundancy or irrelevant detail.

    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?

    For a tool with 10 parameters, no output schema, and no annotations, the description is too minimal. It does not explain what the health check returns, how to retrieve the async result, or how to interpret the variety of options. The schema covers parameter definitions, but the overall behavior and result format remain unclear, making it difficult for an agent to use correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, and the schema already provides detailed explanations for all 10 parameters. The tool description only mentions cURL, dig, and MTR, which aligns with the viewsAllowed parameter but adds no new semantic value beyond what the schema already offers.

    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 'runs a comprehensive health check on a URL from the Akamai edge' and specifies the combination of cURL, dig, and optionally MTR. This distinguishes it from the sibling tools (curl_from_edge, dig_from_edge, mtr_from_edge) which handle individual diagnostics.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies using this tool for a comprehensive health check, but it does not explicitly say when to use it instead of the more specific sibling tools, nor does it provide exclusions or guidance on choosing between them. This leaves the agent to infer the appropriate context.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description must carry the transparency burden. It discloses the time range and edge/origin breakdown but does not explicitly confirm read-only behavior, authentication needs, or rate limits. The term 'Returns' implies a safe read operation, which is helpful but not fully explicit.

    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?

    Two concise sentences with no filler. The first sentence states the core purpose and output; the second adds key scope (edge/origin, time window). Information is front-loaded and every sentence earns its place.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    There is no output schema, so the description should explain return structure and constraints more thoroughly. It covers return categories and time range but omits that at least one of url/cpCode is required (even though the schema marks none required) and does not describe the response format. The tool is moderately complex with 4 optional parameters, so these gaps are notable.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema already provides 100% description coverage for all four parameters, including enums. The tool description adds the 24-48h time window and clarifies edge/origin error types, but the schema already handles most parameter semantics, so the added value is marginal.

    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 returns HTTP error statistics (status code distribution, error percentages) for a URL or CP code, which is specific and distinguishes it from sibling diagnostic tools like url_health_check or curl_from_edge.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies when to use the tool (when error statistics for a URL/CP code are needed over a 24-48h window) but provides no explicit exclusions or comparison with alternatives. An agent is left to infer selection from context rather than receiving direct guidance.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the burden of behavioral disclosure. It explains what the tool does (runs MTR, shows path/latency/loss) but does not mention permissions, side effects, rate limits, or any nuances beyond the basic operation. Since it is a diagnostic, it is implied to be read-only, but this is not explicit.

    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 two sentences, front-loaded with the main verb and resource, and contains zero fluff. It efficiently conveys purpose and output.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool has 10 parameters and no output schema, yet the description only provides a high-level overview. It does not explain how to choose between source types (EDGE_IP vs LOCATION) or when specific parameters like siteShieldHostname are needed. The schema covers the details, but the description lacks guidance for complex scenarios.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema description coverage is 100%, meaning all parameters are already described in the input schema. The tool description adds no additional meaning to the parameters, so it is at the baseline of 3.

    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 runs an MTR network diagnostic from an Akamai edge server to a destination IP or hostname. This is a specific verb+resource+scope that distinguishes it from sibling tools like dig_from_edge and curl_from_edge, which perform different network diagnostics.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides a clear use case ('Useful for diagnosing connectivity issues') but does not explicitly state when to use this tool over alternatives or any exclusions. It implies usage for network path analysis but lacks differentiation from other connectivity diagnostic tools like connectivity_problems or url_health_check.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full transparency burden. It discloses the transformation action and the type of output (component parts), which is valuable. However, it does not mention what happens with invalid URLs, whether the operation is read-only, or the exact format of the returned data, leaving some behavioral ambiguity.

    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, front-loaded sentence that conveys the action, target, and output. Every phrase earns its place, listing the specific components without unnecessary detail or repetition.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple one-parameter tool with high schema coverage and no output schema, the description adequately explains the purpose and expected output. It lacks details on error handling or output structure, but those are less critical given the simplicity. Complete enough for an agent to invoke correctly in most cases.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 100% and the only parameter 'url' is described as 'The fully qualified Akamaized URL (ARL) to translate.' The tool description adds context about the components extracted but does not substantially enhance the parameter meaning beyond the schema. Baseline 3 is appropriate.

    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 verb 'translates' with a specific resource (Akamaized URL/ARL) and lists the output components (CP code, serial number, TTL, origin server, cache key metadata). This distinguishes it from sibling tools like verify_edge_ip or url_health_check which address different use cases.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies when to use the tool (when an Akamaized URL needs to be decomposed) but provides no explicit guidance on when not to use it or which sibling tools to prefer. The context of the purpose makes the usage fairly clear, yet lacks explicit alternatives or exclusions.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden. It discloses that the operation is async and that multiple tools run simultaneously. However, it does not mention result format, potential side effects, or whether special permissions are needed, leaving some behavioral ambiguity.

    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 two sentences, front-loaded with the primary action and followed by a concrete use case. Every sentence adds value, with no redundant or filler content.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool has 9 parameters and no output schema, which increases the burden on the description. While it explains the diagnostic purpose and async behavior, it does not describe the return value format or any prerequisites for successful use. More detail would be needed for full completeness given the complexity.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so baseline is 3. The description adds context that parameters like port and clientIp are used for MTR, and requestHeaders for cURL, but it does not explain individual parameters beyond the schema. It does not fully compensate for the variety of parameters, though the schema already documents them.

    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 runs Akamai connectivity diagnostics for a URL and specifies the three simultaneous operations (GREP, cURL, MTR). This distinguishes it from sibling tools like mtr_from_edge, grep_edge_logs, and curl_from_edge by presenting a combined diagnostic.

    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 gives a specific use case: diagnosing slow downloads and high response times. It does not explicitly exclude alternatives, but the context is clear enough for an agent to select this tool over single-purpose siblings.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the transparency burden. It discloses the async nature ('This is an async operation') and the diagnostic read-only behavior via 'fetches content...to compare responses.' However, it does not explain how to retrieve results or any side effects, leaving some behavioral gaps.

    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 three sentences with no wasted words. It front-loads the core action, then provides use cases, and finally the async note. Every sentence contributes essential information.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    While the description covers purpose, use cases, and async behavior, it omits return/result details (not covered by an output schema) and any prerequisites or post-invocation steps. With six parameters and no annotations, more context would be needed for full invocation confidence.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so all six parameters are already documented. The description adds only the general context of 'for a URL' but does not elaborate on parameter meanings beyond the schema, matching the baseline for full schema coverage.

    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 function: 'Runs Akamai content problem diagnostics for a URL' with specific method 'fetches content via cURL from both edge and origin to compare responses.' This distinguishes it from siblings like url_health_check and connectivity_problems by focusing on content comparison for cache and origin issues.

    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 use cases: 'diagnosing cache inconsistencies, stale content, and origin errors.' This gives solid context for when to use the tool, though it does not explicitly mention when not to use it or name alternative tools for exclusion.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden. It discloses the action (runs dig), the location (Akamai edge server), and the outcome (returns DNS records), which implies a read-only operation. However, it does not explicitly state safety, rate limits, or potential failure modes, leaving some gaps for a network 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?

    Two sentences, front-loaded with the action and purpose. No unnecessary words. The description is efficient and clear.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool has 5 parameters and no output schema or annotations, yet the description is minimal. It explains the general purpose but lacks detail on output format, parameter selection guidance, or troubleshooting context. It is adequate but not rich enough for a diagnostic tool with moderate complexity.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so the baseline is 3. The description adds no extra parameter meaning beyond what the schema already provides; it does not explain the relationship between edgeIp and edgeLocationId or any usage nuances.

    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 runs a DNS dig command from an Akamai edge server and returns DNS records. It uses a specific verb and resource, and the purpose is distinct from sibling tools like curl_from_edge or mtr_from_edge.

    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 a clear use case: 'Useful for debugging DNS resolution and propagation issues.' This gives context for when to use the tool, though it does not explicitly mention alternatives or exclusions.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden. It discloses a key behavioral trait: 'This is an async operation that polls until logs are available.' This is valuable context for an agent. However, it does not mention other traits like timeouts, failure modes, or how the filters combine. It offers some transparency but is not comprehensive, warranting a 3.

    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 two sentences, front-loaded with the primary function and a brief note on async behavior. Every word contributes to understanding; there is no redundant filler or unnecessary detail. This is model conciseness.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With 9 parameters, nested objects, and no output schema, the description is minimal. It explains the tool's purpose and async behavior but does not describe the return format, how filters are combined (AND/OR), or any limitations beyond the schema's note on the 6-12 hour range. The schema covers parameters well, but the overall context is incomplete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema has 100% description coverage, with each parameter fully documented (e.g., start, end, logType enums). The description simply recaps the filter categories without adding syntax or interaction details. Per the baseline rule for high schema coverage, this is a 3.

    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 opens with a specific verb and resource: 'Searches edge server logs by edge IP, time range, and filters (CP codes, hostnames, status codes, client IPs, user agents).' It clearly distinguishes this tool from sibling network diagnostics (e.g., dig_from_edge, mtr_from_edge) by focusing on log searching. The title 'Grep Akamai Edge Logs' reinforces the purpose.

    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 gives clear context for when to use the tool—searching edge logs with specific filters—and is distinct from all listed siblings, so there is no competing log-search tool. However, it does not explicitly state when not to use it or name alternative tools. It conveys the use case effectively without exclusions, thus a 4.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/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 reveal that it returns full headers (including Akamai debug/Pragma headers) and body, but it omits details about side effects, redirects, timeouts, or permissions. This is adequate but has clear gaps for a network-fetch 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 two sentences with no wasted words. It front-loads the action ('Fetches a URL from an Akamai edge server') and immediately follows with the output and use case. Every sentence contributes value.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the 7 parameters, full schema coverage, and no output schema, the description covers the core behavior and return type. It mentions debugging use cases but does not explain error behavior or parameter selection strategies. However, the schema fills most gaps, and the description provides sufficient context for a fetch tool.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema covers 100% of parameters with descriptive text, so the baseline is 3. The description adds no parameter-specific details beyond mentioning 'Akamai debug/Pragma headers' which is relevant but not directly tied to a specific parameter. It relies on the schema to explain semantics, so it meets the baseline.

    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 ('Fetches') and resource ('a URL from an Akamai edge server'), and clearly states the return value ('full HTTP response headers... and body'). It distinguishes itself from sibling tools such as dig_from_edge and mtr_from_edge by focusing on HTTP fetch rather than network diagnostics/logs.

    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 says 'Useful for debugging what the edge is serving, cache status, and response timing,' which provides clear context for when to use it. However, it does not explicitly name alternatives or state when not to use it, so it only partially addresses usage guidance compared to a 5.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the full burden of disclosure. It does add a key behavioral detail: 'This is an async operation that polls until complete.' However, it doesn't mention whether this is a safe read-only operation, any authentication requirements, or potential rate limits. The async note is valuable but leaves other behavioral aspects uncovered.

    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 two sentences, immediately stating the core purpose and then noting the async behavior. Every word earns its place, with no filler or repetition of schema content.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The description covers the essential purpose, output scope, and async nature. Given no output schema exist, it provides a clear sense of what to expect. It doesn't detail polling mechanics or threading, but for a tool with only two parameters and a well-defined task, it is sufficiently complete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, so the schema already explains both parameters thoroughly. The description itself adds minimal extra parameter context beyond repeating the example code. Baseline of 3 is appropriate because the schema does the heavy lifting and the description doesn't enhance or clarify parameters further.

    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 function: translating an Akamai error reference code into human-readable details. It uses a specific verb ('translates') and resource ('Akamai error reference code'), and the inclusion of example codes and output categories distinguishes it from sibling tools like translate_akamaized_url.

    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 gives clear context for when to use the tool (when you have an Akamai error reference code) and implicitly distinguishes it from siblings by focusing on error codes rather than URLs or network diagnostics. However, it doesn't explicitly state when not to use it or name alternative tools for similar tasks.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries full responsibility. It clearly indicates a read-only list operation and mentions the output format (location IDs), but does not disclose potential large result sizes, ordering, or any other behavioral nuances. It provides basic transparency without surprises.

    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?

    Two sentences, front-loaded with the main action, with no wasted words. Every sentence earns its place: the first states the core purpose, the second explains the output's downstream utility.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a parameterless, list-only tool with no output schema, the description is fully complete. It states what it lists and why the results matter, making it enough for an agent to use it correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters, so the baseline is 4. The description adds value by explaining the return value (location IDs) and how they are used, which is relevant for invoking the tool correctly even though no parameters exist.

    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 opens with a specific verb ('Lists') and resource ('Akamai edge server locations'), clearly distinguishing it from sibling tools that perform translations, checks, or diagnostics. It also states the output's purpose: providing location IDs for use in other tools.

    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 implies the typical use case ('Returns location IDs that can be used as edgeLocationId in other tools'), giving context for when to call it. It does not explicitly exclude alternatives, but since no sibling tool is similar, this is clear enough.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-connector-for-akamai MCP server

Copy to your README.md:

Score Badge

mcp-connector-for-akamai MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/amankrokx/mcp-connector-for-akamai'

If you have feedback or need assistance with the MCP directory API, please join our Discord server