list_event_types
Pack: calendly · Endpoint: https://gateway.pipeworx.io/calendly/mcp
List bookable event types (meeting templates). Requires a user URI OR an organization URI (get them from current_user). Returns event type URIs, names, durations, scheduling URLs, and active state.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Calendly personal access token (sent as Bearer token) |
user | string | no | User URI (from current_user). Provide user OR organization. |
organization | string | no | Organization URI (from current_user). Provide user OR organization. |
active | boolean | no | If true, only return active event types. |
count | number | no | Number of results per page (default 20, max 100). |
page_token | string | no | Token from a previous response for the next page. |
Example call
Arguments
{
"_apiKey": "your-calendly-api-key",
"user": "https://api.calendly.com/users/XXXXXXXXXXXXXXXX"
}
curl
curl -X POST https://gateway.pipeworx.io/calendly/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_event_types","arguments":{"_apiKey":"your-calendly-api-key","user":"https://api.calendly.com/users/XXXXXXXXXXXXXXXX"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_event_types', {
"_apiKey": "your-calendly-api-key",
"user": "https://api.calendly.com/users/XXXXXXXXXXXXXXXX"
});
More examples
{
"_apiKey": "your-calendly-api-key",
"organization": "https://api.calendly.com/organizations/XXXXXXXXXXXXXXXX",
"active": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"calendly": {
"url": "https://gateway.pipeworx.io/calendly/mcp"
}
}
}
See Getting Started for client-specific install steps.