- Calendly API v2 client with auth, pagination, error handling - 27 MCP tools across 6 categories (events, event types, scheduling, users, orgs, webhooks) - 12 React MCP apps with dark theme and client-side state - Both stdio and HTTP modes supported - Full TypeScript types and documentation
36 lines
808 B
JSON
36 lines
808 B
JSON
{
|
|
"name": "@mcpengine/calendly-server",
|
|
"version": "1.0.0",
|
|
"description": "Complete Calendly MCP server with 30+ tools and React UI apps",
|
|
"type": "module",
|
|
"main": "./dist/main.js",
|
|
"bin": {
|
|
"calendly-mcp": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && chmod +x dist/main.js",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"start:http": "MCP_MODE=http node dist/main.js",
|
|
"test": "echo \"No tests yet\" && exit 0"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"calendly",
|
|
"scheduling",
|
|
"model-context-protocol"
|
|
],
|
|
"author": "MCPEngine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|