- API client with Clover REST API v3 integration (OAuth2 + API key auth) - 50+ comprehensive tools across 10 categories: * Orders: list, get, create, update, delete, add/remove line items, discounts, payments, fire order * Inventory: items, categories, modifiers, stock management * Customers: CRUD, search, addresses, payment cards * Employees: CRUD, roles, shifts, clock in/out * Payments: list, get, refunds * Merchants: settings, devices, tender types * Discounts: CRUD operations * Taxes: CRUD, tax rates * Reports: sales summary, revenue by item/category, employee performance * Cash: cash drawer tracking and events - 18 React MCP apps with full UI: * Order management: dashboard, detail, grid * Inventory: dashboard, detail, category manager * Customer: detail, grid * Employee: dashboard, schedule * Payment history * Analytics: sales dashboard, revenue by item, revenue by category * Configuration: discount manager, tax manager, device manager * Cash drawer - Complete TypeScript types for Clover API - Pagination support with automatic result fetching - Comprehensive error handling - Full README with examples and setup guide
38 lines
862 B
JSON
38 lines
862 B
JSON
{
|
|
"name": "@mcpengine/clover-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Clover POS platform with comprehensive tools and React apps",
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "tsc && node scripts/copy-assets.js",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"clover",
|
|
"pos",
|
|
"point-of-sale",
|
|
"payments",
|
|
"inventory",
|
|
"orders"
|
|
],
|
|
"author": "MCPEngine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.9",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"lucide-react": "^0.469.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|