Korral StoreLink Server
БесплатноНе проверенEnables AI agents to interact with Korral's StoreLink system to check store inventory and sales data, and create replenishment orders to manage stock-outs.
Описание
Enables AI agents to interact with Korral's StoreLink system to check store inventory and sales data, and create replenishment orders to manage stock-outs.
README
A standalone Model Context Protocol server, written in TypeScript with the official @modelcontextprotocol/sdk, that exposes the StoreLink backend of the Korral grocery chain to an AI agent.
It ships two collapsed, semantic tools designed for a stock-out / replenishment workflow:
| Tool | Purpose |
|---|---|
get_store_inventory_and_sales(store_id, sku) |
One call returns on-hand inventory and trailing-24h POS sales, plus a pre-computed demand_gap and stockout_risk. |
create_replenishment_order(store_id, sku, quantity) |
Fires a mock POST to raise a replenishment (restock) order and returns the confirmation. |
The transport is Stdio — the server reads JSON-RPC from stdin and writes to stdout, which is how MCP hosts (Claude Desktop, IDEs, agent runtimes) launch local servers.
Quick start
npm install
npm test # vitest — unit tests for the tool logic
npm run build # esbuild — bundles a single production file to dist/index.js
npm start # runs dist/index.js over stdio
During development you can run the TypeScript source directly without building:
npm run dev # tsx src/index.ts
Wiring it into an MCP host
{
"mcpServers": {
"korral-storelink": {
"command": "node",
"args": ["E:/temp/duvo-mcp-assignment/dist/index.js"]
}
}
}
Mock data
The mock backend (src/mockData.ts) tracks one SKU — 8847291, Madeta butter 250g — across two
stores, deliberately seeded to show contrasting demand gaps:
| Store | On-hand | POS (last 24h) | Demand gap | Risk |
|---|---|---|---|---|
| 47 | 2 | 10 | 8 | high |
| 102 | 12 | 14 | 2 | moderate |
demand_gap = units_sold_last_24h - on_hand. Store 47 sold far more than it has on the shelf — a
clear restock candidate; Store 102 is keeping pace.
Architectural choices & tradeoffs
1. Collapsed, semantic tools over a 1:1 API mirror
In the real StoreLink API, inventory and POS sales live behind two separate endpoints. A naïve MCP server would expose them as two tools, forcing the agent to make two round-trips, hold both payloads in context, and do the subtraction itself.
Instead, get_store_inventory_and_sales collapses both endpoints into one payload and
pre-computes demand_gap and stockout_risk. The benefits for an agent:
- Fewer tokens / less context churn — one tool result instead of two, with only the fields that matter for the decision.
- Fewer round-trips — one tool call to assess a store/SKU instead of two-then-reason.
- Less room for error — the server, not the model, does the arithmetic and risk bucketing.
Tradeoff: the tool is opinionated and less general-purpose than raw endpoints. A different
consumer that wanted only inventory now over-fetches POS data, and the stockout_risk thresholds
(gap >= 5 → high, >= 1 → moderate) are baked into the server rather than chosen by the caller.
For an agent-first tool surface this is the right trade — we optimize for the agent's context window
and decision quality, not for maximal API flexibility.
2. Action tool returns a confirmation, not a raw HTTP echo
create_replenishment_order models a side-effecting POST. It returns a small, structured
confirmation (order_id, status: "submitted", echoed inputs) rather than a verbose HTTP response,
so the agent gets just enough to confirm success and report back.
3. Schema validation with Zod
Tool inputs are validated with Zod schemas registered through the SDK. Each field carries a
.describe() string that the SDK surfaces in the JSON Schema sent to the model — so the agent learns
what store_id, sku, and quantity mean. quantity is constrained to a positive integer both
in the schema and defensively in the handler.
4. Pure functions + thin server wiring (testability)
The tool logic (getStoreInventoryAndSales, createReplenishmentOrder) is implemented as pure,
exported functions; buildServer() only wires them to the MCP transport. This keeps the
Vitest suite fast and transport-free — it tests behavior directly, with no stdio mocking.
5. esbuild → single bundled file
npm run build (see build.mjs) bundles everything — including the SDK and Zod — into one
self-contained, minified dist/index.js with a #!/usr/bin/env node shebang. An MCP host can run it
with a single node dist/index.js command, no node_modules required at the deploy target. Node
built-ins are left external since the runtime provides them.
Tradeoff: bundling dependencies makes the output larger (~330 KB) and pins them at build time, but removes any runtime install step — the right call for a server meant to be dropped into a host config.
Project layout
.
├── build.mjs # esbuild bundle script -> dist/index.js
├── package.json
├── tsconfig.json
├── vitest.config.ts
├── src
│ ├── index.ts # MCP server: schemas, tools, stdio wiring
│ ├── index.test.ts # Vitest unit tests
│ └── mockData.ts # Mock StoreLink inventory + POS data
└── dist
└── index.js # Bundled production server (generated)
Установка Korral StoreLink Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/AI-Product-Allen-Yu/korral-storelink-mcpFAQ
Korral StoreLink Server MCP бесплатный?
Да, Korral StoreLink Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Korral StoreLink Server?
Нет, Korral StoreLink Server работает без API-ключей и переменных окружения.
Korral StoreLink Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Korral StoreLink Server в Claude Desktop, Claude Code или Cursor?
Открой Korral StoreLink Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Korral StoreLink Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
