- Provider
- discord
- Category
- Communication
- Setup
- See setup section below
- Actions
- 28 available
Quick start
Call Discord from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Discord'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(
"DISCORD_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
Setup details for Discord aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.
Available actions
28 actions exposed via the
Discord integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DISCORD_CONSUME_ENTITLEMENT -
DISCORD_DELETE_TEST_ENTITLEMENT -
DISCORD_DELETE_USER_APPLICATION_ROLE_CONNECTION -
DISCORD_EDIT_APPLICATION_COMMAND_PERMISSIONS -
DISCORD_GET_APPLICATION_COMMAND_PERMISSIONS -
DISCORD_GET_BATCH_APPLICATION_COMMAND_PERMISSIONS -
DISCORD_GET_CURRENT_USER_APPLICATION_ENTITLEMENTS -
DISCORD_GET_GATEWAY -
DISCORD_GET_GUILD_TEMPLATE -
DISCORD_GET_GUILD_WIDGET -
DISCORD_GET_GUILD_WIDGET_PNG -
DISCORD_GET_INVITE
Show all 28 actions
-
DISCORD_GET_MY_GUILD_MEMBER -
DISCORD_GET_MY_OAUTH2_AUTHORIZATION -
DISCORD_GET_MY_USER -
DISCORD_GET_OPENID_CONNECT_USERINFO -
DISCORD_GET_PUBLIC_KEYS -
DISCORD_GET_SKU_SUBSCRIPTION -
DISCORD_GET_USER -
DISCORD_GET_USER_APPLICATION_ROLE_CONNECTION -
DISCORD_INVITE_RESOLVE -
DISCORD_LEAVE_GUILD -
DISCORD_LIST_MY_CONNECTIONS -
DISCORD_LIST_MY_GUILDS -
DISCORD_LIST_SKU_SUBSCRIPTIONS -
DISCORD_LIST_STICKER_PACKS -
DISCORD_MODIFY_CURRENT_USER -
DISCORD_UPDATE_USER_APPLICATION_ROLE_CONNECTION
Build with Discord
Open OverSkill, describe what you want to build, and reference Discord in your prompt — the AI will wire up the integration automatically.