list_scheduled_events

Pack: calendly · Endpoint: https://gateway.pipeworx.io/calendly/mcp

List scheduled meetings (events). Requires a user URI OR an organization URI (get them from current_user). Filter by status, time window, and paginate. Returns event URIs/UUIDs, names, start/end times, status, and locations.

Parameters

NameTypeRequiredDescription
_apiKeystringyesCalendly personal access token (sent as Bearer token)
userstringnoUser URI (from current_user). Provide user OR organization.
organizationstringnoOrganization URI (from current_user). Provide user OR organization.
statusstringnoFilter by event status.
min_start_timestringnoISO 8601 timestamp; only events starting at/after this time.
max_start_timestringnoISO 8601 timestamp; only events starting at/before this time.
countnumbernoNumber of results per page (default 20, max 100).
page_tokenstringnoToken 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_scheduled_events","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_scheduled_events', {
  "_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",
  "status": "active",
  "min_start_time": "2024-01-01T00:00:00Z",
  "max_start_time": "2024-12-31T23:59:59Z",
  "count": 50
}

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.

Regenerated from source · build August 31, 2026