Skip to main content
Glama
kartparash-cmd

Korral StoreLink MCP

Get replenishment status

get_replenishment_status
Read-only

Retrieve the current status and timestamp of a replenishment order by providing its store ID and order ID.

Instructions

Read back a single replenishment order that was created through this server, scoped to its store. Read-only.

WHAT IT RETURNS The order record: order_id, store_id, sku, quantity, reason, current status, and its creation timestamp. status reflects where the order stands in StoreLink's internal flow; it begins at "submitted" on creation and advances from there. Report the status and the timestamp together — a status you read five minutes ago may have moved.

WHEN TO USE IT Step 4 and the final step of the standard workflow: lookup_sku -> get_stock_position -> create_replenishment_order -> get_replenishment_status. Use it when the buyer asks "did that order go through?" or "where is RPL-47-001?", and to confirm a write landed after create_replenishment_order returned. You need the order_id from the creation call — there is no browse, search or list-orders capability here, so an order_id you were never given cannot be recovered from this server.

SCOPE CHECK Both store_id and order_id are required and must match the same order. A valid order_id paired with the wrong store_id returns a not-found style error — it will never leak another store's order. If you get not-found, re-check the order_id and the store it was created for before telling the buyer the order is missing.

ACCESS ERRORS ARE NOT "NOT FOUND" "No credentials for store " and "Authentication failed for store after key reload" mean this server could not ask the question — NOT that the order is missing. The order may well exist and be on its way. Never report an access error to the buyer as a missing or failed order; give them the message so they can raise it with Korral IT.

WHEN NOT TO USE IT Reading an order does not change it, and nothing here can: there is no cancel, delete, amend or expedite on this server, and status is not writable through any tool. If the buyer wants the order stopped or altered, tell them this server cannot do it and they must contact Korral ops. It also shows no supplier or vendor detail, no lead time or delivery ETA, no cost, price or margin, and no POS data. For current shelf stock rather than order state, call get_stock_position instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
order_idYesOrder identifier returned by create_replenishment_order, format RPL-<store>-<seq>, e.g. "RPL-47-001". Orders cannot be searched or listed — without this exact ID the order is unreachable.
store_idYesKorral store ID the order was created for, e.g. "47". Acts as a scope check: it must match the order, or the lookup returns not-found rather than another store's order.
Behavior5/5

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

Annotations only declare readOnlyHint and openWorldHint; the description adds substantial behavioral context: status lifecycle, the requirement to pair order_id from creation, the inseparable store scope, not-found semantics vs. access errors, and the impossibility of mutation. This goes far beyond the annotations and contains no contradiction.

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?

Long but tightly organized with clear section headers (WHAT IT RETURNS, WHEN TO USE IT, SCOPE CHECK, ACCESS ERRORS, WHEN NOT TO USE IT). Every sentence carries operational significance—return fields, status-timestamp pairing, error disambiguation, and alternative tools. Nothing is redundant.

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?

The tool is complex due to order-state semantics, store scoping, and error-prone access failures. With no output schema, the description fully covers return content, usage context, scope assertions, error interpretation, and non-mutability. It is self-sufficient for an agent to select and invoke 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?

Schema coverage is 100% and both parameters already carry detailed descriptions. The tool description adds meaning by explaining the dependency on a prior create_replenishment_order call, the lack of search/recovery, and the strict pairing requirement. This is a modest increment over the schema, so 4 rather than 5.

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 ('Read back') and resource ('single replenishment order') scoped to its store. It clearly distinguishes itself from siblings by stating there is no browse/search/list capability and explicitly contrasts with get_stock_position for current shelf stock.

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 workflow positioning ('Step 4 and the final step of the standard workflow'), concrete buyer-intent triggers ('did that order go through?'), and a dedicated 'WHEN NOT TO USE IT' section naming alternatives (e.g., get_stock_position) and exclusions (no cancel/delete/amend).

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

Install Server

Other Tools

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/kartparash-cmd/korral-storelink-mcp'

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