Server data from the Official MCP Registry
๐โจ MCP server for Clover POS โ restaurant operations, inventory, orders, analytics, and retention
๐โจ MCP server for Clover POS โ restaurant operations, inventory, orders, analytics, and retention
Valid MCP server (5 strong, 5 medium validity signals). 7 known CVEs in dependencies (0 critical, 7 high severity) Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
6 files analyzed ยท 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: CLOVER_API_TOKEN
Environment variable: CLOVER_MERCHANT_ID
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-dokdosolutions-us-lucky": {
"env": {
"CLOVER_API_TOKEN": "your-clover-api-token-here",
"CLOVER_MERCHANT_ID": "your-clover-merchant-id-here"
},
"args": [
"-y",
"@dokdosolutions/clover-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server for ๐ Clover POS โ giving AI agents direct access to restaurant operations: menu management, orders, inventory, analytics, customer retention, financial reporting, and more.
Connect any MCP-compatible AI (Claude, GPT-4, Cursor, Continue, and others) to your Clover merchant account and turn natural language into real POS actions โ no dashboard, no manual lookups, no custom integration code.
This project was born out of a simple idea: restaurant owners โ especially family-run, immigrant-owned restaurants โ deserve the same kind of intelligent assistant that enterprise businesses take for granted. Not a chatbot. Not a dashboard. Something that watches your inventory, knows your regulars, and has your back during a dinner rush.
We built this as the data layer for an AI front-of-house system. It exposes the ๐ Clover V3 REST API as a clean set of MCP tools that any LLM can call โ so instead of logging into a dashboard to check stock levels or pull a sales report, you just ask.
We hope ๐ Clover sees this and runs with it.
This server wraps the ๐ Clover V3 API into 70+ LLM-callable tools across every major area of restaurant operations:
| Module | Tools |
|---|---|
| Menu | Browse items, categories, modifiers, and pricing |
| Orders | Query orders, filter by date/status, inspect line items |
| Customers | Search, create, and profile customers with lifetime spend |
| Inventory | Stock levels, low-stock alerts, adjustments, auto-86 depleted items |
| Analytics | Revenue by period, peak hours, best-selling items, category breakdown |
| Employees | Shift activity, hours worked, clock-in/out visibility |
| Financials | Daily/weekly/monthly summaries, tender breakdowns, tax reporting |
| Retention | Lapsed customers, win-back message drafting, birthday outreach, first-time visitors |
| Operations | Refund rates, open orders, void detection, table turn analysis |
| Forecasting | Week-over-week trends, seasonal patterns, staffing demand signals |
| Reservations | Booking management with conflict detection |
| Smart Queries | Cross-module insights โ happy hour analysis, upsell opportunities, slow day detection |
| Menu Ops | Bulk pricing updates, happy hour scheduling, allergen tagging |
The Model Context Protocol, open-sourced by Anthropic, makes it possible to give AI assistants structured, reliable access to external systems. We saw an opportunity to apply this to the restaurant industry โ a space full of hardworking owners who are data-rich but time-poor.
Independent restaurants don't have engineering teams. They have POS data they never look at, regulars they forget to reach out to, and inventory that runs out at the worst possible time.
A disproportionate number of independent restaurants in the US are owned by immigrant families โ Vietnamese, Korean, Chinese, Mexican, Ethiopian, and countless others โ where English may be a second language and the margin for error is razor-thin. These owners work harder than anyone, yet they're the last to benefit from technology that could actually lighten the load.
This project is built with them in mind. An AI that can answer customer questions in any language, surface the right data at the right time, and handle the operational noise โ so the people who built something from nothing can focus on what they do best; provide and spend time with their family and loved ones.
This MCP server is the foundation for that.
There are other MCP servers that wrap the ๐ Clover API โ and they're well built. But most of them are designed for developers: raw CRUD tools that expose every API endpoint so engineers can build on top of them.
This one is designed for restaurant owners.
The difference is in what the tools actually do. Instead of clover_update_item_stock, you get adjust_inventory โ which validates your adjustment, guards against negative stock, and tells you what changed in plain language. Instead of a generic orders list, you get get_lapsed_customers โ which surfaces your regulars who haven't been back in 30 days and drafts a win-back message for them.
Other servers give an AI the ability to talk to ๐ Clover. This one gives an AI the ability to help run a restaurant.
That's the Dokdo + ๐ Clover difference.
npx @dokdosolutions/clover-mcp
npm install
npm run build
cp .env.example .env
# Fill in your CLOVER_ACCESS_TOKEN and CLOVER_MERCHANT_ID
# Production
CLOVER_ACCESS_TOKEN=your_token CLOVER_MERCHANT_ID=your_merchant_id npm start
# Sandbox (test against ๐ Clover's sandbox environment)
CLOVER_ACCESS_TOKEN=your_sandbox_token CLOVER_MERCHANT_ID=your_sandbox_merchant_id CLOVER_SANDBOX=true npm start
CLOVER_ACCESS_TOKEN=your_token CLOVER_MERCHANT_ID=your_merchant_id CLOVER_SANDBOX=true npm run inspector
Opens the MCP Inspector โ a browser UI for calling tools and seeing live ๐ Clover API responses.
Each ๐ Clover location has its own merchant ID and API token. Run one instance per store:
"clover-store1": {
"command": "npx",
"args": ["-y", "@dokdosolutions/clover-mcp"],
"env": {
"CLOVER_ACCESS_TOKEN": "token_for_store1",
"CLOVER_MERCHANT_ID": "merchant_id_store1"
}
},
"clover-store2": {
"command": "npx",
"args": ["-y", "@dokdosolutions/clover-mcp"],
"env": {
"CLOVER_ACCESS_TOKEN": "token_for_store2",
"CLOVER_MERCHANT_ID": "merchant_id_store2"
}
}
Each instance gets its own rate limiter and retry budget โ no cross-store interference.
# Unit tests (no credentials needed)
npm test
# Sandbox integration tests (requires ๐ Clover sandbox credentials)
CLOVER_ACCESS_TOKEN=your_token CLOVER_MERCHANT_ID=your_merchant_id CLOVER_SANDBOX=true npm run test:sandbox
src/clover-client.ts โ Axios-based HTTP client wrapping the ๐ Clover V3 API, with rate limiting (Bottleneck), automatic retry with exponential backoff (axios-retry), and structured error handlingsrc/tools/ โ One file per domain, each exporting a register*Tools functionsrc/index.ts โ Wires everything together into an MCP server over stdioRate limiting is per-instance (per ๐ Clover merchant), so multi-store deployments stay isolated.
Dokdo Solutions โ AI integration for independent restaurant owners.
MIT
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol ยท Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.