Skip to main content
Glama

Kubova — 3D Container Loading

Server Details

Pack cargo into containers & onto pallets; a verifiable 3D loading plan. Free tier + REST API.

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 DescriptionsA

Average 4.3/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct function: capacity estimation, actual packing, report generation, and connection verification. No overlapping purposes; descriptions clearly differentiate them.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: estimate_capacity, generate_report, pack_containers, verify_key. There are no deviations or mixed conventions.

Tool Count5/5

Four tools are well-scoped for the server's purpose of 3D container loading, covering the core workflow without unnecessary bloat. Each tool is essential.

Completeness5/5

The tool surface covers the full workflow: estimating capacity, packing containers, generating reports, and verifying the connection. No obvious gaps; the integration between pack_containers and generate_report via the result object is seamless.

Available Tools

4 tools
estimate_capacityA
Read-only
Inspect

How many complete SETS of one product fit in a single container? A product is 1+ carton types with qtyPerSet each (e.g. a table shipping as 2 cartons: top + legs). All cartons of a set ride in the SAME container. Uses real 3D packing (not just volume math) and reports the binding limit (dimension / weight / volume) per container. Omit containers to evaluate the standard 20' DC, 40' DC and 40' HC.

ParametersJSON Schema
NameRequiredDescriptionDefault
productYes
containersNoContainers to evaluate. Omit to use the standard catalogue (20' DC, 40' DC, 40' HC).
Behavior5/5

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

The description adds valuable behavioral context beyond the readOnlyHint annotation by disclosing that it uses real 3D packing rather than simple volume math and reports the binding limit (dimension/weight/volume). It also clarifies the constraint that all cartons of a set must be in the same container, which is not evident from the schema.

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 concise and front-loaded, with five sentences that each contribute substantive information without redundancy. It efficiently communicates the core question, product concept, packing behavior, and default container behavior.

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 adequately covers the tool's logic and output (binding limit per container) for a complex tool with no output schema. However, it could be more explicit about the exact return format (e.g., a list of results per container) and how rotation/stacking flags affect results, but the given context is largely complete.

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?

With 50% schema coverage, the description compensates by explaining the product/carton relationship (qtyPerSet) and the significance of the containers parameter (defaulting to standard container types). It adds meaning beyond the schema's field descriptions, though it does not detail every parameter like allowRotation or allowStacking.

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 with a specific verb ('fit') and resource ('container'), and elaborates on the concept of sets and carton types. It distinguishes itself from likely siblings by emphasizing real 3D packing and reporting the binding limit, which aligns with an estimation rather than actual packing 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 context on when to use the tool (to estimate capacity in complete sets) and includes practical usage guidance like omitting containers to use standard container types. However, it does not explicitly name alternatives or state when not to use it, so it falls short of a full 5.

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

generate_reportA
Read-only
Inspect

Generate a CAD-style PDF + 3D PNG report for a packing job. IMPORTANT: to keep the report consistent with a plan you already produced, pass the result object from your previous pack_containers call — the report then renders that exact plan instead of recomputing. Returns base64-encoded PDF + PNG per container.

ParametersJSON Schema
NameRequiredDescriptionDefault
cargosYes
palletNoThe pallet to stack onto. Required when loadingMode is "pallet".
resultNoOPTIONAL but strongly recommended: the exact `result` object returned by a prior pack_containers call, so the report renders THAT plan instead of repacking.
optionsNo
containerNo
containersNo
loadingModeNo'bulk' (default) loads cartons straight into the container. 'pallet' first stacks cartons onto pallets, then loads the pallets — requires the `pallet` field.
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds valuable behavioral context: it returns base64-encoded PDF/PNG per container, and it has the option to render a previously computed plan instead of recomputing. This goes beyond the basic read-only hint without contradicting it.

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 concise (two sentences), front-loads the core purpose, and includes a clearly flagged important usage note and return format. Every sentence contributes meaningful information without 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?

The description gives a solid overview of the tool's purpose, key usage guidance (pass previous result), and return format, which is sufficient for a complex tool with a detailed schema. It lacks a few details such as fallback behavior when no `result` is passed, but the schema covers most parameter specifics.

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?

With schema coverage at 43%, the description needed to compensate for undocumented top-level parameters, but it only highlights the `result` parameter, which is already described in the schema. Other important parameters like `cargos`, `pallet`, and `loadingMode` are not addressed in the description, so it adds little semantic value beyond the schema.

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 generates a 'CAD-style PDF + 3D PNG report for a packing job,' using a specific verb and resource. It distinguishes itself from siblings like estimate_capacity and pack_containers by focusing on report output rather than estimation or packing.

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 by emphasizing the IMPORTANT step of passing the `result` object from a previous pack_containers call to ensure consistency. It implies this tool is used after packing rather than as a standalone packing tool, but does not explicitly state when not to use it or name alternative reporting tools.

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

pack_containersA
Read-only
Inspect

Pack a list of cargo SKUs into one or more shipping containers using the Kubova solver. Supports bulk loading (cartons straight into the container) and pallet loading (loadingMode:"pallet" + a pallet — cartons are stacked onto pallets first, then the pallets loaded). Per-SKU you can set allowed orientations, no-overstack/no-understack, and loading order. Returns per-container placements with x,y,z coordinates in cm, volume utilization, weight, a weightBalance object (centre of gravity + front/back & left/right weight split, flags an unbalanced load) for bulk loads, and any unplaced pieces.

ParametersJSON Schema
NameRequiredDescriptionDefault
cargosYes
palletNoThe pallet to stack onto. Required when loadingMode is "pallet".
optionsNo
containerNo
containersNo
loadingModeNo'bulk' (default) loads cartons straight into the container. 'pallet' first stacks cartons onto pallets, then loads the pallets — requires the `pallet` field.
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds substantial value by describing the return payload (placements with coordinates, volume utilization, weight, weightBalance object, unplaced pieces) and per-SKU configuration options. It does not mention failure modes or rate limits, but the annotation covers the safety profile, and the added context is genuinely useful.

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 compact four-sentence paragraph with a clear structure: main purpose first, then loading modes, per-SKU options, and return values. Every sentence adds meaningful information with no fluff or repetition, making it efficient and easy to parse.

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 tool's complexity (nested schemas, 6 parameters) and lack of output schema, the description does a good job covering the return payload, both loading modes, and key per-SKU settings. It falls slightly short by not explaining how to specify containers (single vs list) or the options object, but the schema provides some of that structure.

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 low (33% at top level), and the description highlights important parameters like loadingMode, orientations, no-overstack/no-understack, and loading order. However, it does not explain the distinction between 'container' and 'containers' or the 'options' fields, so it only partially compensates for the low 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?

Clearly states the tool packs cargo SKUs into shipping containers using the Kubova solver, distinguishing it from sibling tools like estimate_capacity and generate_report. It also specifies the two loading modes (bulk vs pallet) and the nature of the return value, leaving no ambiguity about the tool's function.

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?

Provides clear context on when to use this tool (to pack SKUs into containers) and explains the pallet mode prerequisite (loadingMode:"pallet" + a pallet), which guides correct invocation. However, it does not explicitly contrast with sibling tools or state when not to use it, so it lacks explicit exclusion/alternative guidance.

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

verify_keyA
Read-only
Inspect

Verify the connection. Returns the authenticated account identity and plan.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already set readOnlyHint to true, so the description does not need to explain safety. It adds value by disclosing the return contents (identity and plan), providing helpful behavioral context beyond the annotations. No conflicting or missing critical behavior is apparent for this simple 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 short sentences, front-loaded with the core action and then the return value. Every word earns its place; there is no redundancy or unnecessary detail.

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?

This is a low-complexity tool with no parameters, a read-only annotation, and no output schema. The description covers the purpose and the high-level return values, which is sufficient for an agent to invoke it correctly. Slight improvement could specify the output structure, but the minimal context makes this complete enough.

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 input schema is trivially complete (100% coverage). Per the baseline guidance, a 0-parameter tool scores 4 without needing parameter descriptions. The description mentions no parameters, which is appropriate since none 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 uses a specific verb ('verify') and resource ('connection'), and clearly states what it returns (authenticated account identity and plan). This distinguishes it from sibling tools like estimate_capacity, generate_report, and pack_containers, 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 Guidelines4/5

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

The description implies this tool is used to check the validity of the connection/authentication, which is a distinct and unambiguous purpose. While it does not explicitly mention when not to use it or name alternatives, its role as a verification tool is clear and siblings are unrelated, so the guidance is adequate.

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

  • A
    license
    -
    quality
    C
    maintenance
    Plan optimal container & truck loads: 3D layouts, right-size the container mix, and check utilization, centre of gravity, crush protection and securing across 200+ equipment types.
    17
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI assistants to plan container and truck loads from plain-English shipment descriptions, returning fitted containers, utilization, non-fitting items, and interactive 3D load plans.
    1
    95
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to pack trucks and shipping containers by generating validated 3D load plans with metrics like LDM, linear feet, and pallet positions through the Hansatic packing API.
    3
    13
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Lets AI agents pack shipping containers using the Kubova calculator, with tools for container loading and API key verification.
    4
    20
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources