merchant-catalog-mcp
A demonstration MCP server that exposes a mock merchant catalog with tools for product search, availability checking, and order placement, along with a catalog resource and gift-finder prompt.
README
merchant-catalog-mcp
A small, production-quality MCP (Model Context Protocol) server in TypeScript. It exposes a mock merchant catalog to any MCP-compatible client (Claude Desktop, the MCP Inspector, IDE agents, etc.) through three tools — search, availability, and ordering. The data is intentionally in-memory: this project is a clear, readable demonstration of the protocol, not a data layer.
What it does
The server exposes three tools over the MCP stdio transport:
| Tool | Input | What it returns |
|---|---|---|
search_products |
query (string, required), category (enum, optional) |
Products whose name/description match the query, optionally filtered by category. |
check_availability |
productId (string, required) |
Stock status (in_stock / low_stock / out_of_stock) and on-hand quantity. |
place_order |
productId (string), quantity (positive integer) |
Validates against stock, decrements it, and returns a mock order confirmation. Errors (bad id, not enough stock) come back as tool results flagged isError. |
Every tool also declares an outputSchema and returns structuredContent,
so clients receive typed objects, not just text.
It also exposes the other two MCP primitives:
| Primitive | Name | What it is |
|---|---|---|
| Resource | catalog://products |
The full catalog as a read-only JSON resource the host can pull into context. |
| Prompt | gift_finder |
A user-invoked template (occasion, budget) that composes a catalog gift-recommendation request. |
How the MCP pieces fit (the 60-second tour)
- Host / client / server. A host app (Claude Desktop, the Inspector) runs an MCP client that connects to one or more servers. This repo is one server.
- A server exposes three kinds of things. Tools (model-callable actions),
resources (read-only data the app pulls by URI), and prompts
(user-invoked templates). This server demonstrates all three: three tools,
a
catalog://productsresource, and agift_finderprompt. - Transport = the pipe. Messages are JSON-RPC 2.0. With the stdio transport, the client launches this server as a subprocess and exchanges messages over stdin/stdout. (Because stdout is the protocol channel, all diagnostics in this server go to stderr.)
- Input schema = the contract. Each tool declares its arguments with a
zodschema. The SDK converts it to JSON Schema, advertises it during discovery, and validates every incoming call against it before the handler runs. The schema is what tells the model exactly how it's allowed to call the tool. - Output schema = the response contract. Each tool also declares an
outputSchemaand returnsstructuredContent— a typed object the client gets directly, validated by the SDK — instead of only stringified JSON in text. - Lifecycle.
initialize(capability handshake) →tools/list(discovery) →tools/call(invocation) → structured result. State (stock levels) persists for the life of the process, so an order visibly reduces availability.
Project structure
src/
catalog.ts Domain layer: Product type, in-memory data, pure lookup/search/mutate helpers.
No MCP imports — this is the "swap-in-a-database-here" seam.
index.ts Protocol layer: creates the McpServer, registers the three tools
(input + output schema + handler), the catalog resource, and the
gift_finder prompt, then connects the stdio transport.
The split is deliberate: business logic in catalog.ts, protocol wiring in
index.ts. The tools are thin adapters over logic that could just as easily sit
behind a real API or database.
Requirements
- Node.js 18+ (developed on Node 24 LTS)
Install
npm install
Run
# Dev: run the TypeScript directly, no build step
npm run dev
# Production: compile to dist/ then run the compiled server
npm run build
npm start
On startup the server prints merchant-catalog-mcp running on stdio to stderr
and then waits for JSON-RPC messages on stdin. (Running it in a bare terminal and
seeing it "hang" is correct — it's waiting for a client to speak to it.)
Verify it works
Option A — MCP Inspector, UI mode
npm run inspect
This launches the official MCP Inspector and opens a browser panel. Steps:
- It auto-connects to this server over stdio.
- Open the Tools tab and click List Tools — you'll see all three, each with a form generated from its input schema.
- Select
search_products, enter aquery(e.g.speaker), and Run Tool. - Try
place_orderwithproductId=sku-003,quantity=2, then runcheck_availabilityon the same id to watch stock drop.
Option B — MCP Inspector, CLI mode (scriptable)
# Discover tools
npx @modelcontextprotocol/inspector --cli node dist/index.js --method tools/list
# Call a tool
npx @modelcontextprotocol/inspector --cli node dist/index.js \
--method tools/call --tool-name search_products --tool-arg query=speaker
# Place an order
npx @modelcontextprotocol/inspector --cli node dist/index.js \
--method tools/call --tool-name place_order \
--tool-arg productId=sku-002 --tool-arg quantity=1
Option C — raw JSON-RPC (what a client does under the hood)
{
printf '%s\n' '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"raw","version":"1.0.0"}}}'
printf '%s\n' '{"jsonrpc":"2.0","method":"notifications/initialized"}'
printf '%s\n' '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'
printf '%s\n' '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search_products","arguments":{"query":"headphones"}}}'
sleep 0.5
} | node dist/index.js
Use it from Claude Desktop
Build first (npm run build), then add this server to your Claude Desktop MCP
config. The file lives at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"merchant-catalog": {
"command": "/absolute/path/to/node",
"args": ["/absolute/path/to/merchant-catalog-mcp/dist/index.js"]
}
}
}
Then fully quit and reopen Claude Desktop (it loads MCP servers only at startup). The three tools will appear in the tools menu.
Gotcha — use absolute paths for both
commandandargs. Claude Desktop is a GUI app, so it launches this server with the system environment, not your shell's — it does not read~/.zshrc/~/.bashrcand therefore may not findnodeon itsPATH. Pointingcommandat the absolute path of your Node binary (find it withwhich node) avoids a "spawn node ENOENT" failure.
Catalog
Eight products across four categories (audio, wearables, home,
accessories), including deliberately low-stock (sku-003, sku-008) and
out-of-stock (sku-004) items so you can exercise the availability and
validation paths. See src/catalog.ts.
Possible next steps
- Swap
catalog.tsfor a real database — the protocol layer wouldn't change. - Add an HTTP/SSE transport for remote hosting (only the transport lines in
index.tschange). - Add unit tests over
catalog.tsand a CI workflow that runstsc+ tests.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.