|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.calcom-mcp-npx", |
| 4 | + "name": "Cal.com (npx)", |
| 5 | + "alias": "calcom", |
| 6 | + "description": "Manage Cal.com bookings and event types with natural language. Create, reschedule, and cancel bookings, list and update event types, and query availability through the official Cal.com MCP server.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/79145102?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "productivity" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "calcom", |
| 14 | + "calendar", |
| 15 | + "scheduling", |
| 16 | + "bookings", |
| 17 | + "events", |
| 18 | + "meetings" |
| 19 | + ], |
| 20 | + "transport": { |
| 21 | + "type": "stdio", |
| 22 | + "command": "npx", |
| 23 | + "args": [ |
| 24 | + "-y", |
| 25 | + "@calcom/cal-mcp" |
| 26 | + ], |
| 27 | + "env": { |
| 28 | + "CAL_API_KEY": "${input:CAL_API_KEY}" |
| 29 | + }, |
| 30 | + "metadata": { |
| 31 | + "inputs": [ |
| 32 | + { |
| 33 | + "id": "CAL_API_KEY", |
| 34 | + "label": "Cal.com API Key", |
| 35 | + "description": "Your Cal.com API key. Used to authenticate against the Cal.com API for managing bookings and event types.", |
| 36 | + "type": "text", |
| 37 | + "required": true, |
| 38 | + "secret": true, |
| 39 | + "placeholder": "cal_live_****************", |
| 40 | + "obtain": { |
| 41 | + "url": "https://app.cal.com/settings/developer/api-keys", |
| 42 | + "instructions": "1. Open Cal.com Settings > Developer > API keys\n2. Click 'Add' to create a new API key\n3. (Optional) Set an expiration date\n4. Copy the generated key (starts with cal_live_)", |
| 43 | + "button_label": "Create API Key" |
| 44 | + } |
| 45 | + } |
| 46 | + ] |
| 47 | + } |
| 48 | + }, |
| 49 | + "auth": { |
| 50 | + "type": "api_key", |
| 51 | + "instructions": "Create an API key at Cal.com Settings > Developer > API keys and provide it as CAL_API_KEY." |
| 52 | + }, |
| 53 | + "contributor": { |
| 54 | + "name": "Cal.com", |
| 55 | + "github": "calcom", |
| 56 | + "url": "https://cal.com" |
| 57 | + }, |
| 58 | + "links": { |
| 59 | + "repository": "https://github.com/calcom/cal-mcp", |
| 60 | + "homepage": "https://cal.com", |
| 61 | + "documentation": "https://cal.com/docs/mcp-server" |
| 62 | + }, |
| 63 | + "platforms": [ |
| 64 | + "all" |
| 65 | + ], |
| 66 | + "capabilities": { |
| 67 | + "tools": true, |
| 68 | + "resources": false, |
| 69 | + "prompts": false, |
| 70 | + "read_only_mode": false |
| 71 | + }, |
| 72 | + "changelog_url": "https://github.com/calcom/cal-mcp/releases" |
| 73 | +} |
0 commit comments