=== UPDATES === - fieldedge: Added apps, tools, main server entry, full rebuild - lightspeed: Added complete src/ directory with tools + apps - squarespace: Full rebuild — new apps, clients, tools, types modules - toast: Full rebuild — api-client, apps, tools, types - touchbistro: Full rebuild — api-client, tools, types, gitignore - servicetitan: Added 4 React UI apps (call-tracking, lead-source-analytics, performance-metrics, schedule-calendar) All servers restructured from single-file to modular architecture.
36 lines
745 B
JSON
36 lines
745 B
JSON
{
|
|
"name": "@mcpengine/toast-server",
|
|
"version": "1.0.0",
|
|
"description": "Complete Toast POS MCP Server - Orders, Menus, Employees, Labor, Payments, Inventory & More",
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"bin": {
|
|
"toast-mcp": "dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"toast",
|
|
"pos",
|
|
"restaurant",
|
|
"orders",
|
|
"payments"
|
|
],
|
|
"author": "MCPEngine",
|
|
"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"
|
|
}
|
|
}
|