get_event

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

Get a single scheduled event by its UUID (the last path segment of an event URI). Returns full event details including name, times, status, location, and event membership.

Parameters

NameTypeRequiredDescription
_apiKeystringyesCalendly personal access token (sent as Bearer token)
uuidstringyesScheduled event UUID (last segment of the event URI).

Example call

Arguments

{
  "_apiKey": "your-calendly-api-key",
  "uuid": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
}

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":"get_event","arguments":{"_apiKey":"your-calendly-api-key","uuid":"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_event', {
  "_apiKey": "your-calendly-api-key",
  "uuid": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
});

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 30, 2026