drio
Open app

Clover MCP (Model Context Protocol) Server

Source

Enables AI agents to access and interact with Clover merchant data, inventory, and orders through a secure OAuth-authenticated MCP server.

Catalog onlyCatalog onlySTDIO

Overview

Clover MCP (Model Context Protocol) Server is a minimal server designed for interacting with the Clover API using OAuth authentication, allowing generative AI models and other clients to access Clover merchant data.

To use Clover MCP, set up your Clover app and configure the server with your OAuth credentials. You can interact with it via Claude AI or directly through the command line.

  • Access to merchant information, inventory items, and orders. - OAuth authentication for secure access. - Integration with generative AI models like Claude.
  1. Retrieve merchant information for analysis.
  2. List and manage inventory items.
  3. Access and manage orders efficiently.

Add to your AI client

Use these steps to connect Clover MCP (Model Context Protocol) Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "clover-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clover-mcp-ibraheem4"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "clover-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clover-mcp-ibraheem4"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "clover-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clover-mcp-ibraheem4"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "clover-mcp-ibraheem4": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clover-mcp-ibraheem4"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "clover-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clover-mcp-ibraheem4"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "clover-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clover-mcp-ibraheem4"
      ]
    }
  }
}

FAQ

How do I set up my Clover app?

Create a developer account at developer.clover.com, register a new app, and configure it with the necessary OAuth settings.

Can I use Clover MCP without OAuth?

No, OAuth authentication is required to access Clover merchant data securely.

What programming language is Clover MCP built with?

Clover MCP is built using TypeScript.