current_user
Pack: calendly · Endpoint: https://gateway.pipeworx.io/calendly/mcp
Get the current Calendly user for the supplied token. Returns the user URI and organization URI — call this FIRST, since list_scheduled_events and list_event_types require a user or organization URI.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Calendly personal access token (sent as Bearer token) |
Example call
Arguments
{
"_apiKey": "your-calendly-api-key"
}
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":"current_user","arguments":{"_apiKey":"your-calendly-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('current_user', {
"_apiKey": "your-calendly-api-key"
});
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.