- Full API client with Basic Auth and OAuth2 support - 40+ tools across 10 categories (appointments, availability, clients, calendars, products, forms, labels, webhooks, coupons, blocks) - 14 interactive React-based MCP apps for rich UI experiences - Comprehensive error handling and pagination - TypeScript implementation with full type definitions - Complete documentation and examples
35 lines
723 B
JSON
35 lines
723 B
JSON
{
|
|
"name": "@mcpengine/acuity-scheduling-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Acuity Scheduling API",
|
|
"type": "module",
|
|
"main": "./dist/main.js",
|
|
"bin": {
|
|
"acuity-scheduling-mcp": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"acuity",
|
|
"scheduling",
|
|
"appointments"
|
|
],
|
|
"author": "MCPEngine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.9",
|
|
"dotenv": "^16.4.7",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|