mcpengine/servers/toast/package.json
Jake Shore 601224bf70 fieldedge: Complete MCP server with 87 tools and 16 React apps
- Multi-file architecture with API client, comprehensive types, 13 tool domains
- 87 total tools covering customers, jobs, invoices, estimates, equipment, technicians, scheduling, inventory, payments, reporting, locations, service agreements, tasks
- 16 dark-themed React MCP apps (Dashboard, Customers, Jobs, Scheduling, Invoices, Estimates, Technicians, Equipment, Inventory, Payments, Service Agreements, Reports, Tasks, Calendar, Map View, Price Book)
- Full TypeScript support with zero compilation errors
- Comprehensive README with API coverage details
- Bearer token authentication with rate limiting and error handling
2026-02-12 18:18:51 -05:00

37 lines
857 B
JSON

{
"name": "@busybee3333/toast-mcp-server",
"version": "1.0.0",
"description": "Complete MCP server for Toast restaurant POS/management platform with 50+ tools and 15+ React apps",
"type": "module",
"bin": {
"toast-mcp-server": "./dist/main.js"
},
"scripts": {
"build": "tsc && npm run build:ui",
"build:ui": "for dir in src/ui/*/; do (cd \"$dir\" && npm install && npm run build); done",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"toast",
"pos",
"restaurant",
"orders",
"menu",
"labor",
"payments"
],
"author": "BusyBee3333",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
}
}