← 返回 Skills 市场
kesslerio

Calendly Integration

作者 kesslerio · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2340
总下载
0
收藏
6
当前安装
1
版本数
在 OpenClaw 中安装
/install calendly
功能描述
Calendly scheduling integration. List events, check availability, manage meetings via Calendly API.
使用说明 (SKILL.md)

Calendly Skill

Interact with Calendly scheduling via MCP-generated CLI.

Note: Scheduling API features (list-event-types, get-event-type-availability, schedule-event) will be available once calendly-mcp-server v2.0.0 is published to npm. Current CLI uses v1.0.0 for portability.

Quick Start

# Get your Calendly profile (returns user URI)
calendly get-current-user

# List RECENT events (always use --min-start-time for recent queries!)
calendly list-events --user-uri "\x3CYOUR_USER_URI>" --min-start-time "2026-01-20T00:00:00Z"

# Get event details
calendly get-event --event-uuid \x3CUUID>

# Cancel an event
calendly cancel-event --event-uuid \x3CUUID> --reason "Rescheduling needed"

Available Commands

User Info

  • get-current-user - Get authenticated user details

Events

  • list-events - List scheduled events (requires --user-uri)
  • get-event - Get event details (requires --event-uuid)
  • cancel-event - Cancel an event (requires --event-uuid, optional --reason)

Invitees

  • list-event-invitees - List invitees for an event (requires --event-uuid)

Organization

  • list-organization-memberships - List organization memberships

Configuration

API key can be stored in your environment or .env file:

export CALENDLY_API_KEY="\x3Cyour-pat-token>"
# Or in ~/.moltbot/.env or ~/.clawdbot/.env

Get your Personal Access Token from: https://calendly.com/integrations/api_webhooks

Usage in Moltbot

When user asks about:

  • "What meetings do I have?" → list-events with --min-start-time (use recent date!)
  • "Cancel my 2pm meeting" → Find with list-events (time-filtered), then cancel-event
  • "Who's attending X meeting?" → list-event-invitees

Note: First time, run calendly get-current-user to obtain your User URI.

Getting Your User URI

Run calendly get-current-user to get your user URI. Example:

{
  "resource": {
    "uri": "https://api.calendly.com/users/\x3CYOUR_USER_UUID>",
    "scheduling_url": "https://calendly.com/\x3Cyour-username>"
  }
}

Examples

# List next 10 events
calendly list-events \
  --user-uri "\x3CYOUR_USER_URI>" \
  -o json | jq .

# Get event details
calendly get-event \
  --event-uuid "\x3CEVENT_UUID>" \
  -o json

# Cancel with reason
calendly cancel-event \
  --event-uuid "\x3CEVENT_UUID>" \
  --reason "Rescheduling due to conflict"

Coming Soon: Scheduling API (v2.0)

Once calendly-mcp-server v2.0.0 is published, these commands will be available:

Scheduling Workflow

# 1. List available event types
calendly list-event-types

# 2. Check availability for a specific event type
calendly get-event-type-availability --event-type "\x3CEVENT_TYPE_URI>"

# 3. Schedule a meeting (requires paid Calendly plan)
calendly schedule-event \
  --event-type "\x3CEVENT_TYPE_URI>" \
  --start-time "2026-01-25T19:00:00Z" \
  --invitee-email "[email protected]" \
  --invitee-name "John Smith" \
  --invitee-timezone "America/New_York"

Scheduling API Requirements:

  • calendly-mcp-server v2.0.0+ (unreleased as of 2026-01-21)
  • Paid Calendly plan (Standard or higher)

To upgrade when v2.0 is published:

cd ~/clawd/skills/calendly
MCPORTER_CONFIG=./mcporter.json npx mcporter@latest generate-cli --server calendly --output calendly

Important: Time Filtering

Always use --min-start-time when querying recent events!

The API returns events oldest-first by default and doesn't support pagination via CLI. Without a time filter, you'll get events from years ago.

# Last 7 days
calendly list-events --user-uri "\x3CURI>" --min-start-time "$(date -u -d '7 days ago' +%Y-%m-%dT00:00:00Z)"

# This week
calendly list-events --user-uri "\x3CURI>" --min-start-time "2026-01-20T00:00:00Z" --max-start-time "2026-01-27T23:59:59Z"

# Future events only
calendly list-events --user-uri "\x3CURI>" --min-start-time "$(date -u +%Y-%m-%dT%H:%M:%SZ)"

Notes

  • All times in API responses are UTC (convert to Pacific for display)
  • Event UUIDs are found in list-events output
  • OAuth tools available but not needed with Personal Access Token
  • No pagination support in CLI - use time filters instead

Generated: 2026-01-20
Updated: 2026-01-21 (Portable CLI with npm v1.0.0; v2.0 scheduling features pending upstream publish)
Source: meAmitPatil/calendly-mcp-server via mcporter

安全使用建议
This skill appears to be a straightforward Calendly CLI wrapper, but the published package is inconsistent and incomplete. Before installing or providing secrets: 1) Confirm provenance — this repo/author (meAmitPatil / kesslerio) and the calendly-mcp-server/npm packages are what you expect. 2) Do not paste your CALENDLY_API_KEY into shared or system-wide dotfiles unless you accept that other local processes or skills may read them; prefer a skill-specific config or runtime secret store. 3) If you must run the documented npx/mcporter commands to generate the CLI, review the code they will fetch (npm package source) — npx executes remote code. 4) Prefer an OAuth flow or least-privilege PAT and rotate the token after initial testing. 5) Because the registry metadata omits the required CALENDLY_API_KEY and the binary is not bundled, treat this package as incomplete/packaging-error rather than production-ready until fixed. If you want a definitive 'benign' judgment, ask the publisher to (a) publish the CLI binary or include a verified install spec, and (b) update the registry to declare CALENDLY_API_KEY as a required credential.
功能分析
Type: OpenClaw Skill Name: calendly Version: 1.0.0 The skill is designed for Calendly integration, and its core functionality appears benign. However, both SKILL.md and README.md contain instructions for using `npx mcporter@latest generate-cli` to regenerate the skill's CLI. While presented as an upgrade or development step, this command involves downloading and executing a remote package from npm, which introduces a supply chain risk and a form of remote code execution capability. This constitutes a risky capability without clear malicious intent, classifying the skill as suspicious.
能力评估
Purpose & Capability
The skill claims to integrate with the Calendly API (listing events, cancelling, scheduling). That requires a Calendly Personal Access Token, but the registry metadata declares no required environment variables or primary credential. Also the SKILL.md and README assume a 'calendly' CLI binary exists (or can be generated), yet the package contains only README.md and SKILL.md — no CLI. These are coherence/packaging issues: the skill as published doesn't include the executable it documents and the manifest doesn't declare the real secret it needs.
Instruction Scope
Runtime instructions are explicit about which CLI commands to run and which Calendly endpoints to use. They instruct storing CALENDLY_API_KEY in environment or in ~/.moltbot/.env or ~/.clawdbot/.env and using time filters for list-events. The instructions do not request unrelated system files, but they do encourage reading/writing bot-specific dotfiles and optionally running npx mcporter to generate a CLI — which grants the agent permission to run code fetched from npm if followed.
Install Mechanism
There is no install spec in the registry (instruction-only), which is low risk. However the README/SKILL.md document using npx mcporter@latest to generate a CLI (and reference calendly-mcp-server npm). Running those commands would download and execute code from npm — a moderate-risk operation if you don't trust the upstream packages. The published skill itself does not include the CLI binary, so following the docs would require fetching external code.
Credentials
The skill requires a Calendly Personal Access Token (CALENDLY_API_KEY) to function, but the registry metadata failed to declare this. The instructions suggest placing the token in environment variables or in bot dotfiles under the user home, which are sensitive locations. No other credentials are requested, which is proportionate to the stated purpose — the concern is the missing declaration and the guidance to store secrets in shared dotfiles without explaining scoping or least-privilege.
Persistence & Privilege
The skill is not forced-always, does not request system-level installs in the registry, and does not declare modifications to other skills or global configuration. Autonomy (model-invocation) is allowed by default, which is normal. There is no indication that the skill requests persistent elevated presence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install calendly
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /calendly 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial ClawHub release
元数据
Slug calendly
版本 1.0.0
许可证
累计安装 6
当前安装数 6
历史版本数 1
常见问题

Calendly Integration 是什么?

Calendly scheduling integration. List events, check availability, manage meetings via Calendly API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2340 次。

如何安装 Calendly Integration?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install calendly」即可一键安装,无需额外配置。

Calendly Integration 是免费的吗?

是的,Calendly Integration 完全免费(开源免费),可自由下载、安装和使用。

Calendly Integration 支持哪些平台?

Calendly Integration 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Calendly Integration?

由 kesslerio(@kesslerio)开发并维护,当前版本 v1.0.0。

💬 留言讨论