Developer docs

Ably integration

Ably is a real-time messaging platform helping developers build live features,…

Updated June 2026 25 actions available

Provider
ably
Category
Other
Setup
User-supplied API key
Actions
25 available

Quick start

Call Ably from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Ably's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "ABLY_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Ably API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

25 actions exposed via the Ably integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 25 actions
  • ABLY_LIST_PUSH_CHANNELS
  • ABLY_LIST_PUSH_CHANNEL_SUBSCRIPTIONS
  • ABLY_LIST_REGISTERED_PUSH_DEVICES
  • ABLY_PATCH_PUSH_DEVICE_REGISTRATION
  • ABLY_PUBLISH_BATCH_MESSAGES
  • ABLY_PUBLISH_MESSAGE_TO_CHANNEL
  • ABLY_PUBLISH_PUSH_NOTIFICATION
  • ABLY_PUBLISH_PUSH_NOTIFICATIONS_BATCH
  • ABLY_REGISTER_PUSH_DEVICE
  • ABLY_REQUEST_ACCESS_TOKEN
  • ABLY_UNREGISTER_ALL_PUSH_DEVICES
  • ABLY_UNREGISTER_PUSH_DEVICE
  • ABLY_UPDATE_PUSH_DEVICE

Build with Ably

Open OverSkill, describe what you want to build, and reference Ably in your prompt — the AI will wire up the integration automatically.