143 lines
3.5 KiB
JSON
143 lines
3.5 KiB
JSON
{
|
|
"server": {
|
|
"command": "node",
|
|
"args": [
|
|
"/Users/jakeshore/.clawdbot/workspace/mcp-diagrams/mcp-servers/calendly/dist/index.js"
|
|
],
|
|
"env": {
|
|
"CALENDLY_API_KEY": "factory_discovery_dummy"
|
|
}
|
|
},
|
|
"tests": {
|
|
"tools": {
|
|
"list_events": {
|
|
"args": {
|
|
"count": 50,
|
|
"min_start_time": "test_value",
|
|
"max_start_time": "test_value",
|
|
"status": "active",
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_events:empty-min_start_time": {
|
|
"args": {
|
|
"count": 50,
|
|
"min_start_time": "",
|
|
"max_start_time": "test_value",
|
|
"status": "active",
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_events:empty-max_start_time": {
|
|
"args": {
|
|
"count": 50,
|
|
"min_start_time": "test_value",
|
|
"max_start_time": "",
|
|
"status": "active",
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_events:empty-status": {
|
|
"args": {
|
|
"count": 50,
|
|
"min_start_time": "test_value",
|
|
"max_start_time": "test_value",
|
|
"status": "",
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_events:empty-page_token": {
|
|
"args": {
|
|
"count": 50,
|
|
"min_start_time": "test_value",
|
|
"max_start_time": "test_value",
|
|
"status": "active",
|
|
"page_token": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"get_event": {
|
|
"args": {
|
|
"event_uuid": "test-id-123"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"cancel_event": {
|
|
"args": {
|
|
"event_uuid": "test-id-123",
|
|
"reason": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"cancel_event:empty-reason": {
|
|
"args": {
|
|
"event_uuid": "test-id-123",
|
|
"reason": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_event_types": {
|
|
"args": {
|
|
"count": 50,
|
|
"active": true,
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_event_types:empty-page_token": {
|
|
"args": {
|
|
"count": 50,
|
|
"active": true,
|
|
"page_token": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"get_availability": {
|
|
"args": {
|
|
"event_type_uuid": "test-id-123",
|
|
"start_time": "test_value",
|
|
"end_time": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_invitees": {
|
|
"args": {
|
|
"event_uuid": "test-id-123",
|
|
"count": 50,
|
|
"status": "active",
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "content && content.length > 0"
|
|
},
|
|
"list_invitees:empty-status": {
|
|
"args": {
|
|
"event_uuid": "test-id-123",
|
|
"count": 50,
|
|
"status": "",
|
|
"page_token": "test_value"
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"list_invitees:empty-page_token": {
|
|
"args": {
|
|
"event_uuid": "test-id-123",
|
|
"count": 50,
|
|
"status": "active",
|
|
"page_token": ""
|
|
},
|
|
"expect": "exists"
|
|
},
|
|
"get_user": {
|
|
"args": {},
|
|
"expect": "content && content.length > 0"
|
|
}
|
|
},
|
|
"resources": {},
|
|
"prompts": {},
|
|
"timeout": 30000
|
|
}
|
|
} |