Skip to main content
Glama

SMKlog Parcel Shipping Rates

US parcel shipping price index

get_price_index
Read-onlyIdempotent

The SMKlog parcel shipping price index: a monthly repriced basket of six common boxes (1 to 20 lb) shipped from Newark, NJ to five US cities, quoted through the same live USPS, UPS and FedEx pipeline that prices real shipments. Returns the cheapest purchasable service per box and lane with every rate behind it, plus basket averages. Reference data for questions like "what does shipping a shoebox cost in the US right now" — reading it spends no quote allowance. For a price on a specific shipment, call get_parcel_quote instead. Parameter rules: month names one published issue as YYYY-MM; issues exist from 2026-07 onward, one per month, and omitting month returns the newest. A month with no issue answers issue_not_found together with available_months, so one miss lists every valid value; anything not shaped YYYY-MM answers invalid_month. Every issue prices the same boxes and lanes, so two months compare cell for cell.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
monthNoIssue month as YYYY-MM. Omit for the newest published issue.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoThe published issue page on smklog.com
cellsYesOne entry per box and destination
labelNoIssue month spelled out, e.g. "August 2026"
monthYesIssue month, YYYY-MM
originNoOrigin of every lane, Newark NJ (07102)
captured_onYesThe date every price in this issue was captured
methodologyNoHow the numbers are produced
carrier_winsNoHow many cells each carrier priced cheapest
basket_averageNoMean of the cheapest rate across all thirty cells, USD

TDQS

A5/5.0
Behavior5/5

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

Annotations already declare readOnly, idempotent, and non-destructive hints, and the description adds meaningful behavioral context beyond them: it does not consume quote allowance, omitting month returns the newest issue, and invalid or missing months produce specific error shapes (invalid_month vs issue_not_found with available_months). No contradiction with annotations.

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?

Every sentence earns its place: definition, return payload, use case, cost implication, sibling routing, parameter rules, error behavior, and comparability. The description is front-loaded with the core definition and no sentence is redundant with the schema or annotations.

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 read-only lookup tool with an output schema, this description is complete. It covers purpose, usage context, alternatives, parameter format and defaults, error cases, cost side-effects, and issue comparability. There is no missing information an agent needs to correctly select and invoke the tool.

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

Parameters5/5

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

Schema coverage is 100%, but the description goes well beyond the schema's 'Issue as YYYY-MM. Omit for newest published issue.' It documents the valid date range from 2026-07, the one-issue-per-month cadence, omission behavior, and both error responses. The comparability guarantee across issues is also valuable semantic context.

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?

States a specific verb ('Returns') and resource ('SMKlog parcel shipping price index'), then names exact outputs: cheapest purchasable service per box and lane, every rate behind it, and basket averages. It also distinguishes itself from sibling get_parcel_quote by clarifying it is reference data, not a specific shipment price.

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

Usage Guidelines5/5

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

Provides explicit usage context with example questions ('what does shipping a shoebox cost in the US right now') and states that reading spends no quote allowance. It explicitly routes specific-shipment pricing to get_parcel_quote instead, making the when-to-use/when-not-to-use boundary unambiguous.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.9/5.0
Disambiguation5/5

Each tool targets a distinct operation: live quote versus checkout session versus reference index versus tracking. The only potential overlap is create_checkout_link's live-pricing fallback, but its stated purpose and required quote_id flow make the boundary clear.

Naming Consistency5/5

All four tool names follow the same imperative verb_noun pattern in snake_case: create_checkout_link, get_parcel_quote, get_price_index, track_parcel. No mixed conventions or vague verbs.

Tool Count5/5

Four tools is a well-scoped set for a parcel shipping domain: one for quotes, one for checkout links, one for reference pricing, and one for tracking. Each tool earns its place without bloat or redundancy.

Completeness4/5

The core workflow is covered: get a quote, create a checkout link, and track the resulting label, with a free price-index tool for reference. Minor gaps exist around post-purchase lifecycle operations like voiding labels or retrieving session status, but those are not central to the stated purpose.