Logistic ID
Server Details
Check shipping costs for all logistics services in Indonesia.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 3 of 3 tools scored.
Each tool serves a clearly distinct purpose: get_courier_rates for shipping costs, get_map_areas for administrative IDs, and usage_statistic for API limits. There is no overlap or ambiguity between them.
Two tools follow the get_verb_noun pattern (get_courier_rates, get_map_areas), but usage_statistic deviates as a noun phrase. The naming is still readable and predictable, with only a minor inconsistency.
With only 3 tools, the set is well-scoped for a focused logistic rates API. Each tool is necessary, and the count falls comfortably within the typical 3-15 range, avoiding bloat.
The tool surface covers the full workflow: get_map_areas provides required area IDs, get_courier_rates delivers the core functionality, and usage_statistic handles API monitoring. There are no obvious gaps for the stated purpose.
Available Tools
3 toolsget_courier_ratesAInspect
Query real-time shipping costs and estimate delivery dates across Indonesian shipping couriers. [CRITICAL]: You MUST obtain valid origin and destination area IDs first using the 'get_map_areas' tool.
| Name | Required | Description | Default |
|---|---|---|---|
| weight | Yes | Total weight of the shipment parcel in grams. Minimum value is 1. | |
| origin_area_id | Yes | Unique administrative area ID representing the shipment origin. | |
| destination_area_id | Yes | Unique administrative area ID representing the shipment destination. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for behavioral disclosure. It discloses that the tool queries real-time data and returns costs/estimates, and underscores the need for valid IDs. However, it does not describe error behavior, whether the operation is read-only, any rate limits, or what happens if invalid IDs are supplied, which are relevant behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences with no filler. The first sentence front-loads the primary purpose, and the second delivers a critical prerequisite. Every word earns its place, and the structure makes the dependency clear immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters, no enums, no output schema, and only moderate complexity, the description covers the essential context: the tool's function and a mandatory prerequisite for parameter preparation. It does not describe the response format in detail, but the mention of 'shipping costs and estimate delivery dates' gives a sufficient expectation of the output for an agent. There's minor room for improvement, such as noting typical failure modes or response shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully describes the three parameters with types and descriptions (100% coverage), so the baseline is 3. The description adds value beyond the schema by explicitly linking 'origin_area_id' and 'destination_area_id' to the 'get_map_areas' tool, clarifying that these are not arbitrary strings but must be obtained from that companion tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Query real-time shipping costs and estimate delivery dates') on a well-defined resource ('across Indonesian shipping couriers'). It also distinguishes itself from the sibling tool 'get_map_areas' by referencing it as a prerequisite, making the tool's role unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides an explicit, critical usage instruction: the agent MUST obtain valid origin and destination area IDs using 'get_map_areas' before calling this tool. This is clear context and a direct reference to an alternative/companion tool, but it does not explicitly state when *not* to use this tool or mention other alternatives beyond the prerequisite.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_map_areasAInspect
Query Indonesian administrative area IDs for shipping calculations. [CRITICAL]: 1) Search using ONLY a single subdistrict or district name (e.g. 'Setia Budi' or 'Arcamanik') or a 5-digit postal code. 2) DO NOT combine multiple levels in a single query.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Single subdistrict/district name, or 5-digit postal code. |
Tool Definition Quality
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 clearly warns about the critical input format and the prohibition on combining levels, which helps the agent understand the tool's strict requirements. However, it does not describe the return format or any potential errors.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the core purpose, followed by clearly structured critical instructions. Every sentence contributes essential information without redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter, no output schema), the description covers the essential aspects: what the tool does and how the input must be formatted. It does not explain the return values in detail, but the phrase 'administrative area IDs' implies the output, making the description sufficiently complete for this simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes the single 'input' parameter as a subdistrict/district name or postal code (100% coverage). The description adds value by providing examples ('Setia Budi', 'Arcamanik'), explicitly specifying the 5-digit postal code format, and emphasizing the critical rule against combining multiple levels.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Query Indonesian administrative area IDs for shipping calculations.' It specifies a distinct resource (area IDs) and purpose, which differentiates it from sibling tools like get_courier_rates and usage_statistic.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage constraints: search using only a single subdistrict/district name or 5-digit postal code, and explicitly instructs not to combine multiple levels. This gives clear context on how to use the tool, though it does not mention any alternative tools or when not to use it beyond the constraint.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
usage_statisticAInspect
Retrieves the current user's API rate limits, including requests used and remaining requests.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must carry the behavioral disclosure burden. It accurately indicates a read-only retrieval operation and specifies the data returned, but it does not mention authentication requirements, potential delays, or any edge cases. For a simple read-only tool, the core behavior is transparent, but richer context would improve the score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that immediately states the purpose and the data included. It contains no redundant words, making it both concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with no parameters and no output schema. The description adequately explains what the tool returns (requests used and remaining), which is sufficient for the use case. No additional information is necessary for a complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, and the schema is empty with 100% coverage. The description appropriately avoids adding parameter information since none exist. The baseline for 0-parameter tools is 4, and no deduction is warranted.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Retrieves' and identifies the exact resource: the current user's API rate limits, including requests used and remaining. This clearly distinguishes the tool from its siblings (get_courier_rates, get_map_areas), which target different domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for checking current API consumption, but it does not explicitly state when to use it or when to prefer an alternative. Since the sibling tools are unrelated, the usage context is clear, but no direct guidance or exclusionary language is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityAmaintenanceGTM signal intelligence suite for AI agents. Six tools: hiring signals, tech stack detection, company-to-LinkedIn resolution, ICP scoring, job board scanning, and a combined signals aggregator. Built for outbound sales workflows.Last updated111111MIT

industrylens-mcpofficial
Flicense-qualityCmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.Last updated
Sociality MCPofficial
Alicense-qualityDmaintenanceSocial media analytics, post insights, and competitor benchmarking for AI agents.Last updated5MIT- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.Last updated1901MIT