
Clishop
- 2 repo stars
- Updated April 6, 2026
- DavooxBv2/CLISHOP
io.github.StefDCL/clishop is an MCP server that exposes CLISHOP search, purchase, tracking, and order management tools over stdio.
About
io.github.StefDCL/clishop is a Model Context Protocol server that wraps CLISHOP’s ordering API so developers can commerce from the same terminal session as their agent. After you set CLISHOP_API_KEY, stdio registration lets Claude Code, Cursor, or Codex search listings, submit purchases, track deliveries, and manage order state without bespoke scrapers or browser macros. Version 0.2.1 on npm targets developers automating procurement, affiliate experiments, or personal shopping bots—not merchant storefront launch. It sits in Build integrations alongside other API bridges: you get structured tool calls instead of ad-hoc curl. Treat spend and API keys as production secrets when you move past experiments.
- npm package clishop v0.2.1 with stdio MCP transport
- Search, buy, track, and manage orders as agent-callable tools
- Terminal-first commerce flow for builder automations
- Requires CLISHOP_API_KEY secret in server environment
- Open-source repo: github.com/DavooxBv2/CLISHOP
Clishop by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env CLISHOP_API_KEY=YOUR_CLISHOP_API_KEY clishop -- npx -y clishopAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Package | clishop |
| Transport | STDIO |
| Auth | Required |
| Last updated | April 6, 2026 |
| Repository | DavooxBv2/CLISHOP ↗ |
What it does
Let your coding agent search products, place orders, track shipments, and manage purchases via CLISHOP MCP tools from the terminal.
Who is it for?
CLI-first developers automating orders, tracking, and cart workflows inside Claude Code or Cursor.
Skip if: Running a customer-facing ecommerce storefront, teams without CLISHOP accounts, or finance compliance without your own review.
What you get
Your agent can run CLISHOP commerce operations via MCP after you configure a single API key.
- Agent-callable search, purchase, track, and manage order tools
- Terminal-driven commerce workflow without custom checkout UI
- Reusable stdio MCP pattern for other paid API integrations
By the numbers
- Package version 0.2.1 on npm identifier clishop
- 1 required secret env: CLISHOP_API_KEY
- Transport: stdio; capabilities described as search, buy, track, manage
README.md
CLISHOP
Order anything from your terminal. Built for AI agents and humans.
CLISHOP is an open-source CLI that lets AI agents and humans search for products across multiple stores, compare prices, and place real orders — all from the terminal. Anyone can sell on CLISHOP using a Dark Store.
Works with
Highlights
- One query searches every store in the network. Results are filtered to what actually ships to your address.
- Set spending caps per order, require email confirmation before anything ships, or let it go through automatically — your call.
- Ships as a native MCP server with 46 tools. Works with VS Code Copilot, Claude, Cursor, Windsurf, and anything else that speaks MCP.
- Can't find what you need? Post an advertise request and let vendors compete to fulfill it.
- Support tickets, product reviews, store reviews — all from the terminal.
- Anyone can sell on CLISHOP by deploying a Dark Store. No website needed.
Install
Requires Node.js ≥ 18. Works on macOS, Windows, and Linux/WSL.
npm install -g clishop
This gives you two commands: clishop (the CLI) and clishop-mcp (the MCP server for AI agents).
OpenClaw
Once the ClawHub package is published, install CLISHOP into an OpenClaw workspace with:
openclaw plugins install clawhub:clishop
The bundle exposes the CLISHOP skill under skills/clishop/SKILL.md and merges the packaged MCP defaults from .mcp.json so OpenClaw can launch the bundled CLISHOP MCP runtime locally without fetching npm code at startup.
Linux / WSL
CLISHOP works out of the box on Linux and WSL. On systems without a native keychain, tokens are stored in a local file (~/.config/clishop/auth.json) with restricted permissions.
For native keychain support (optional):
sudo apt install libsecret-1-0
Run clishop doctor to check your system's compatibility.
From source
git clone https://github.com/DavooxBv2/CLISHOP.git
cd CLISHOP
npm install
npm run build
npm link
Quick Start
You can create your account on clishop.ai or do everything from the CLI.
Setup
Setup only needs an email address. Search first, then add your address and payment method when you're ready to buy.
For OpenClaw, MCP clients, Claude-style shells, and other tool runners, use:
clishop setup start --email user@example.com --json
setup start returns immediately with account-ready status and stores auth locally.
In OpenClaw, prefer the installed CLISHOP MCP tools over CLI shell commands. For address management, the intended flow is to call list_addresses first, then add_address non-interactively with any known fields, and ask the user only for missing required address fields (label, firstName, lastName, line1, city, postalCode, country). For payments, use add_payment_method to generate a secure setup link for the human, then check list_payment_methods after the human completes the web flow. The agent should never ask for raw card details in chat.
- Search products right away with
clishop search <query> - Add a shipping address later with
clishop address add - Add a payment method later with
clishop payment add
After setup is complete, add a shipping address and start ordering:
$ clishop search "wireless headphones"
🔍 Search results for "wireless headphones"
1 Sony WH-1000XM5 $278.00
SUPERSTORE · ★ 8.1 · Free shipping · 3-5 days
2 JBL Tune 770NC Wireless $79.95
EveryMarket · ★ 7.9 · $5.99 shipping · 5-8 days
$ clishop info 1
Sony WH-1000XM5
─────────────────────────────────────
Price: $278.00
Store: SUPERSTORE (★ 8.1)
Shipping: Free · 3-5 business days
Returns: 30-day free returns
In stock: Yes
Industry-leading noise cancellation with
Auto NC Optimizer. 30-hour battery life.
Multipoint connection for two devices.
clishop buy 1
Tip: use result numbers from a search anywhere —
clishop info 1 2 3orclishop buy 2.
Diagnostics
If something isn't working, run:
clishop doctor
This checks keychain availability, token storage, authentication status, and API connectivity.
Architecture
┌─────────────────────────────┐
│ AI Agent / Script / Human │
└──────────────┬──────────────┘
│
┌───────▼───────┐
│ CLISHOP CLI │ ← this repo
│ (Node.js) │
└───────┬───────┘
│ HTTPS
┌───────▼───────┐
│ CLISHOP API │ ← backend (Vercel)
└───────┬───────┘
│
┌──────────┼──────────┐
▼ ▼ ▼
Store A Store B Store C ← vendor Dark Stores
Sell on CLISHOP
You can run your own store with the Dark Store template. Define your catalog, shipping rules, and pricing in YAML, deploy to Vercel, and you're live. No website needed.
Development
git clone https://github.com/DavooxBv2/CLISHOP.git
cd CLISHOP && npm install
npm run dev -- search "headphones" # Dev mode (no build needed)
npm run build # Production build
npm run lint # Type-check
MCP Server
CLISHOP ships as a native MCP server with 46 tools. Any MCP-compatible client gets shopping capabilities out of the box.
clishop-mcp # If installed globally
node ./dist/mcp.js # From the installed package directory
The MCP onboarding tools now follow the same email-first model:
setupcreates the account immediately from the email addresssetup_statusremains available only for legacy setup IDs
See the MCP setup guides for VS Code, Claude Desktop, Cursor, and Windsurf configuration.
Docs
Full command reference, agent configuration, search filters, and more:
Links
- 🌐 clishop.ai
- 📖 Docs
- 💬 Discord
- 🏪 Dark Store
License
Recommended MCP Servers
How it compares
Terminal commerce MCP integration, not product ideation or weather tutorial servers.
FAQ
Who is io.github.StefDCL/clishop for?
Developers and developers who already use CLISHOP and want purchase and tracking tools exposed to MCP agents from the terminal.
When should I use io.github.StefDCL/clishop?
Use it during Build when you are integrating agent-driven procurement, order bots, or personal shopping automations.
How do I add io.github.StefDCL/clishop to my agent?
Install npm package clishop, set CLISHOP_API_KEY in the MCP server env, add a stdio MCP entry pointing at clishop v0.2.1, and confirm search/order tools in your client.