=== 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.
38 lines
765 B
JSON
38 lines
765 B
JSON
{
|
|
"name": "@mcpengine/touchbistro-server",
|
|
"version": "1.0.0",
|
|
"description": "TouchBistro MCP Server - Complete POS and restaurant management integration",
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"bin": {
|
|
"touchbistro-mcp": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"prepare": "npm run build",
|
|
"start": "node dist/main.js"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"touchbistro",
|
|
"pos",
|
|
"restaurant",
|
|
"orders",
|
|
"payments",
|
|
"inventory"
|
|
],
|
|
"author": "MCP Engine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|