MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace ยฉ 2026. All rights reserved.

Back to Browse

Clover MCP Server

by Dokdosolutions Us
Developer ToolsUse Caution3.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

๐Ÿ€โœจ MCP server for Clover POS โ€” restaurant operations, inventory, orders, analytics, and retention

About

๐Ÿ€โœจ MCP server for Clover POS โ€” restaurant operations, inventory, orders, analytics, and retention

Security Report

3.0
Use Caution3.0High Risk

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.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

Unverified package source

We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.

What You'll Need

Set these up before or after installing:

Clover API access tokenRequired

Environment variable: CLOVER_API_TOKEN

Clover merchant IDOptional

Environment variable: CLOVER_MERCHANT_ID

How to Install

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"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Lucky โ€“ Clover MCP Server ๐Ÿ€

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.


What It Does

This server wraps the ๐Ÿ€ Clover V3 API into 70+ LLM-callable tools across every major area of restaurant operations:

ModuleTools
MenuBrowse items, categories, modifiers, and pricing
OrdersQuery orders, filter by date/status, inspect line items
CustomersSearch, create, and profile customers with lifetime spend
InventoryStock levels, low-stock alerts, adjustments, auto-86 depleted items
AnalyticsRevenue by period, peak hours, best-selling items, category breakdown
EmployeesShift activity, hours worked, clock-in/out visibility
FinancialsDaily/weekly/monthly summaries, tender breakdowns, tax reporting
RetentionLapsed customers, win-back message drafting, birthday outreach, first-time visitors
OperationsRefund rates, open orders, void detection, table turn analysis
ForecastingWeek-over-week trends, seasonal patterns, staffing demand signals
ReservationsBooking management with conflict detection
Smart QueriesCross-module insights โ€” happy hour analysis, upsell opportunities, slow day detection
Menu OpsBulk pricing updates, happy hour scheduling, allergen tagging

Inspiration

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.


How This Differs From Other Clover MCP Servers

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.


Getting Started

Prerequisites

  • Node.js 24+
  • A ๐Ÿ€ Clover developer account with an OAuth app
  • A ๐Ÿ€ Clover merchant API token (sandbox or production)

Install via npm (recommended)

npx @dokdosolutions/clover-mcp

Or install from source

npm install
npm run build

Configure

cp .env.example .env
# Fill in your CLOVER_ACCESS_TOKEN and CLOVER_MERCHANT_ID

Run

# 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

Inspect Tools Interactively

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.


Multi-Store Setup

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.


Testing

# 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

Architecture

  • 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 handling
  • src/tools/ โ€” One file per domain, each exporting a register*Tools function
  • src/index.ts โ€” Wires everything together into an MCP server over stdio

Rate limiting is per-instance (per ๐Ÿ€ Clover merchant), so multi-store deployments stay isolated.


Built By

Dokdo Solutions โ€” AI integration for independent restaurant owners.


License

MIT

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source Codenpm Package

Details

Published June 7, 2026
Version 1.0.4
0 installs
Local Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol ยท Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
4
Installs
6.5
Security
No ratings yet
Local

Fetch

Free

by Modelcontextprotocol ยท Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
4
Installs
5.3
Security
No ratings yet
Local

Toleno

Free

by Toleno ยท Developer Tools

Toleno Network MCP Server โ€” Manage your Toleno mining account with Claude AI using natural language.

137
Stars
496
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace ยท Developer Tools

Create, build, and publish Python MCP servers to PyPI โ€” conversationally.

-
Stars
68
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft ยท Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

120.0K
Stars
24
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace ยท Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
17
Installs
10.0
Security
No ratings yet
Local