mcpengine/servers/toast/package.json
Jake Shore 2c41d0fb3b toast: Complete rebuild with 76 tools, 18 React apps, and HTTP+stdio modes
- Rebuilt src/tools/ with 10 files covering all Toast API domains
  * orders.ts (12 tools) - Complete order lifecycle
  * menus.ts (11 tools) - Menu and item management
  * employees.ts (9 tools) - Staff management
  * restaurant.ts (9 tools) - Configuration
  * cash.ts (8 tools) - Cash management
  * labor.ts (6 tools) - Workforce analytics
  * payments.ts (6 tools) - Transactions
  * reporting.ts (6 tools) - Analytics
  * inventory.ts (5 tools) - Stock management
  * customers.ts (4 tools) - CRM

- Built src/ui/react-app/ with 18 client-side apps
  * Orders: order-dashboard, order-detail, order-grid, table-map
  * Menus: menu-manager, menu-item-detail, menu-performance
  * Staff: employee-dashboard, employee-schedule, labor-dashboard, tip-summary
  * Finance: payment-history, sales-dashboard, revenue-by-hour
  * Ops: inventory-tracker, restaurant-overview
  * CRM: customer-detail, customer-loyalty

- Built server.ts + main.ts supporting both stdio and HTTP modes
- Updated package.json, tsconfig.json, comprehensive README.md
- Dark theme UI (#0f0f0f bg, #00bfa5 accent)
- Client-side state management with sample data
2026-02-12 18:24:34 -05:00

52 lines
1.1 KiB
JSON

{
"name": "@busybee3333/toast-mcp-server",
"version": "1.0.0",
"description": "Complete MCP server for Toast restaurant POS/management platform with 50+ tools and 18 React apps",
"type": "module",
"main": "dist/main.js",
"bin": {
"toast-mcp-server": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/main.js",
"start:http": "TOAST_MCP_MODE=http node dist/main.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"toast",
"pos",
"restaurant",
"orders",
"menu",
"labor",
"payments",
"inventory",
"model-context-protocol"
],
"author": "BusyBee3333",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"zod": "^3.24.1",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/BusyBee3333/mcpengine.git"
},
"publishConfig": {
"access": "public"
}
}