=== 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.
42 lines
939 B
JSON
42 lines
939 B
JSON
{
|
|
"name": "@mcpengine/squarespace",
|
|
"version": "1.0.0",
|
|
"description": "Complete MCP server for Squarespace - website builder and ecommerce platform",
|
|
"type": "module",
|
|
"bin": {
|
|
"squarespace-mcp": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && npm run build:ui",
|
|
"build:ui": "node scripts/build-ui.js",
|
|
"prepublishOnly": "npm run build",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/main.js"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"squarespace",
|
|
"website-builder",
|
|
"ecommerce",
|
|
"cms"
|
|
],
|
|
"author": "MCPEngine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.2",
|
|
"dotenv": "^16.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.0.11"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|