Skip to main content
Glama

Server Quality Checklist

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

  • Disambiguation5/5

    Each tool targets a distinct operation: city lookup, pickup point lookup, delivery calculation, tracking, postal code check, and service listing. There is no meaningful overlap between them, and the descriptions make the boundary of each tool clear.

    Naming Consistency4/5

    The naming is mostly consistent with snake_case verb_noun patterns like list_cities, list_points, and list_services. Minor deviations exist: track is a bare verb and zip_check is noun_verb instead of check_zip, but the overall convention is still readable and predictable.

    Tool Count5/5

    Six tools is well-scoped for a delivery information server. Each tool covers a meaningful part of the Boxberry workflow without unnecessary duplication or bloat.

    Completeness4/5

    The tool set covers location discovery, pricing, tracking, and service lookups, which are the core informational workflows for Boxberry. It does not include order creation or management, but that appears outside the stated scope of the server.

  • Average 3.3/5 across 6 of 6 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 is failing
  • 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 behavioral disclosure burden. It only states that a list of rendered services is returned, without mentioning that the operation is read-only, whether authentication is needed, error behavior, or response format.

    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 short sentence with no wasted words. It is appropriately concise and front-loaded for a simple one-parameter tool.

    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 no output schema and no annotations, the description is too thin. It does not explain what 'services' means in the Boxberry context, what the output will contain, or any likely failure scenarios, leaving the agent without enough context to invoke it confidently.

    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 covers the only parameter with 100% description coverage. The tool description adds no extra meaning beyond what the parameter description already provides, so the baseline of 3 applies.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a clear verb and resource: it lists services rendered for a Boxberry shipment. It is distinguishable from siblings like list_cities and list_points by the subject matter, though it does not explicitly contrast itself with them.

    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?

    No guidance is provided on when to use this tool versus alternatives such as track or calc_delivery. The description gives no context about the intended scenario or exclusions.

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

  • Behavior2/5

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

    No annotations are present, so the description carries the full burden of behavioral disclosure. It only states the action and input; it does not disclose whether the operation is read-only, what kind of result or status data will be returned, how errors are handled, or whether any side effects occur. This is minimal coverage for an unannotated 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, short, front-loaded sentence that conveys the purpose and identifies the key input. There is no filler, redundancy, or unnecessary detail.

    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, this is minimally adequate: the agent knows what the tool does and what input to provide. However, with no annotations and no output schema, the complete absence of behavioral or return information leaves the agent guessing about the outcome of a successful call.

    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 sole parameter tracking_number is already documented in the schema. The description adds no additional meaning beyond restating the parameter concept, so it meets the baseline but does not enhance understanding with examples or format details.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the operation (tracking) and the resource (Boxberry shipment) with the key input (tracking number). It is unambiguous and distinct from sibling tools like list_cities or calc_delivery, though it is phrased as a noun phrase rather than as an explicit verb+object construction.

    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 any exclusions. The phrase 'by tracking number' weakly implies a use case, but no explicit when-to-use or when-not-to-use information is given.

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

  • Behavior2/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 of disclosing behavior. It only says 'проверка' (check), which weakly implies a read-only lookup, but it does not mention return format, error behavior, external API calls, rate limits, or any side effects.

    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 with no filler or redundancy. Every word contributes to stating the action and object, making it easy to parse quickly.

    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 single-required-parameter tool with clear domain context, the description covers the invocation essentials. However, there is no output schema and no description of what the tool returns, so the agent cannot know whether the result is a simple boolean, a status code, or a structured delivery-availability object.

    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%: the zip parameter is fully described as 'Почтовый индекс для проверки зоны доставки Boxberry'. The tool description adds no new parameter-level meaning beyond what the schema already provides, which matches the baseline for high 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 states a specific verb and resource: 'Проверка почтового индекса' (check postal code) for 'доступность доставки Boxberry' (Boxberry delivery availability). This clearly differentiates it from siblings like list_cities, list_points, and calc_delivery, which serve different purposes.

    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 calc_delivery or list_cities. There are no explicit conditions, prerequisites, or 'use instead' hints, so an agent must infer usage solely from the tool name.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full behavioral burden. It only states that the tool calculates cost and time; it does not disclose return format, assumptions, caveats, or whether the operation is read-only. The non-destructive nature is implied by 'Расчёт' but not elaborated.

    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?

    A single clear sentence with no filler, redundant schema repetition, or boilerplate. It is front-loaded with the core purpose.

    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?

    Despite complete parameter documentation, the absence of an output schema, annotations, and usage or limitation guidance leaves the description at a bare-minimum level. An agent lacks context about what the response contains, any calculation assumptions, and when this tool is preferable to siblings.

    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 description adds no parameter-level details, but the input schema covers 100% of parameters with names, units, defaults, and descriptions. Therefore the baseline of 3 applies: the schema does the heavy lifting.

    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 names a specific action ('Расчёт' – calculation) and a specific resource ('стоимости и сроков доставки Boxberry' – Boxberry delivery cost and time), which clearly separates it from siblings like list_cities, list_points, and track.

    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 the tool is for calculating Boxberry delivery costs and times, but it does not explicitly state when to choose it over sibling tools or mention any prerequisites, exclusions, or alternative routing.

    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 of behavioral disclosure. It accurately states the core behavior: listing cities and searching by name. However, it does not mention output format, pagination, or whether an empty search returns all cities, leaving some behavior implicit.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single concise sentence with no filler, and the core resource is front-loaded. It is appropriately sized for a simple tool, though it could add a useful detail about the return value without becoming verbose.

    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 low-complexity tool with one optional parameter, the description is mostly adequate. However, with no output schema and no annotations, it does not specify what fields the returned city list includes or how search behaves at boundaries, leaving a moderate gap for an agent interpreting results.

    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 documents the one parameter with 100% coverage, so the description adds little beyond restating the search-by-name functionality. It reinforces the substring search concept but does not provide extra detail, examples, or constraints beyond what the schema already offers.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies a list operation over Boxberry cities with optional search by name. The resource 'cities' distinguishes it from sibling tools like list_points and list_services, though it does not explicitly name those alternatives. Using a noun phrase instead of a verb is slightly weaker, but the intent is unambiguous.

    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 the tool is for retrieving Boxberry cities with optional name filtering, but it gives no explicit guidance about when to choose this tool over alternatives such as list_points or zip_check. An agent can infer the usage from the tool name and resource, but exclusions and selection criteria are not stated.

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

  • Behavior2/5

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

    With no annotations, the description carries the full behavioral disclosure burden, but it only says the tool returns a list of pickup points in a city. It does not mention the prepaid filtering behavior (left to the schema), response contents, pagination/limits, or failure behavior, so it is minimally transparent rather than misleading.

    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; the object (pickup points) and scope (city) are front-loaded. This is appropriately sized for a simple list operation.

    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 definition is adequate for a simple list call when combined with the schema, but because there is no output schema and no annotations, the description should more clearly state the full return behavior and the dependency on list_cities. It leaves room for ambiguity about whether all points or only some are returned.

    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%: city_code is described as the Boxberry city code from list_cities, and prepaid has enum/default plus a clear Russian explanation. The description adds no parameter-level meaning, so it appropriately rests at the baseline 3 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 names a specific resource (Boxberry pickup points) and a clear scope (specified city), with an implicit list verb. This is immediately distinguishable from siblings like list_cities (cities) and calc_delivery/track (delivery calculations/tracking).

    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?

    No explicit when-to-use or when-not-to-use guidance is given, and no alternative tool is named in the description. The schema's note that city_code comes from list_cities provides a workflow hint, and the city-based scope implies usage for listing pickup points, but the selection guidance is mostly left to inference.

    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

boxberry-mcp MCP server

Copy to your README.md:

Score Badge

boxberry-mcp 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/theYahia/boxberry-mcp'

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