Jake Shore d3382ec35a Update 6 MCP servers — fieldedge, lightspeed, squarespace, toast, touchbistro, servicetitan — 2026-02-12
=== 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.
2026-02-12 17:58:15 -05:00

43 lines
977 B
JSON

{
"name": "@mcpengine/lightspeed-mcp-server",
"version": "1.0.0",
"description": "MCP server for Lightspeed POS and eCommerce platform - retail and restaurant management",
"author": "MCPEngine",
"license": "MIT",
"type": "module",
"bin": {
"lightspeed-mcp": "./dist/main.js"
},
"main": "./dist/main.js",
"scripts": {
"build": "tsc && npm run build:apps",
"build:apps": "node build-apps.js",
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"start": "node dist/main.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@vitejs/plugin-react": "^4.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"keywords": [
"mcp",
"lightspeed",
"pos",
"ecommerce",
"retail",
"restaurant",
"inventory",
"sales"
]
}