discord
Use when you need to control Discord from OpenClaw via the discord tool: send messages, react, post or upload stickers, upload emojis, run polls, manage threads/pins/search, create/edit/delete channels and categories, fetch permissions or member/role/channel info, set bot presence/activity, or handle moderation actions in Discord DMs or channels.
Install
mkdir -p .claude/skills/discord && curl -L -o skill.zip "https://mcp.directory/api/skills/download/575" && unzip -o skill.zip -d .claude/skills/discord && rm skill.zipInstalls to .claude/skills/discord
About this skill
Discord Actions
Overview
Use discord to manage messages, reactions, threads, polls, and moderation. You can disable groups via discord.actions.* (defaults to enabled, except roles/moderation). The tool uses the bot token configured for OpenClaw.
Inputs to collect
- For reactions:
channelId,messageId, and anemoji. - For fetchMessage:
guildId,channelId,messageId, or amessageLinklikehttps://discord.com/channels/<guildId>/<channelId>/<messageId>. - For stickers/polls/sendMessage: a
totarget (channel:<id>oruser:<id>). Optionalcontenttext. - Polls also need a
questionplus 2–10answers. - For media:
mediaUrlwithfile:///pathfor local files orhttps://...for remote. - For emoji uploads:
guildId,name,mediaUrl, optionalroleIds(limit 256KB, PNG/JPG/GIF). - For sticker uploads:
guildId,name,description,tags,mediaUrl(limit 512KB, PNG/APNG/Lottie JSON).
Message context lines include discord message id and channel fields you can reuse directly.
Note: sendMessage uses to: "channel:<id>" format, not channelId. Other actions like react, readMessages, editMessage use channelId directly.
Note: fetchMessage accepts message IDs or full links like https://discord.com/channels/<guildId>/<channelId>/<messageId>.
Actions
React to a message
{
"action": "react",
"channelId": "123",
"messageId": "456",
"emoji": "✅"
}
List reactions + users
{
"action": "reactions",
"channelId": "123",
"messageId": "456",
"limit": 100
}
Send a sticker
{
"action": "sticker",
"to": "channel:123",
"stickerIds": ["9876543210"],
"content": "Nice work!"
}
- Up to 3 sticker IDs per message.
tocan beuser:<id>for DMs.
Upload a custom emoji
{
"action": "emojiUpload",
"guildId": "999",
"name": "party_blob",
"mediaUrl": "file:///tmp/party.png",
"roleIds": ["222"]
}
- Emoji images must be PNG/JPG/GIF and <= 256KB.
roleIdsis optional; omit to make the emoji available to everyone.
Upload a sticker
{
"action": "stickerUpload",
"guildId": "999",
"name": "openclaw_wave",
"description": "OpenClaw waving hello",
"tags": "👋",
"mediaUrl": "file:///tmp/wave.png"
}
- Stickers require
name,description, andtags. - Uploads must be PNG/APNG/Lottie JSON and <= 512KB.
Create a poll
{
"action": "poll",
"to": "channel:123",
"question": "Lunch?",
"answers": ["Pizza", "Sushi", "Salad"],
"allowMultiselect": false,
"durationHours": 24,
"content": "Vote now"
}
durationHoursdefaults to 24; max 32 days (768 hours).
Check bot permissions for a channel
{
"action": "permissions",
"channelId": "123"
}
Ideas to try
- React with ✅/⚠️ to mark status updates.
- Post a quick poll for release decisions or meeting times.
- Send celebratory stickers after successful deploys.
- Upload new emojis/stickers for release moments.
- Run weekly “priority check” polls in team channels.
- DM stickers as acknowledgements when a user’s request is completed.
Action gating
Use discord.actions.* to disable action groups:
reactions(react + reactions list + emojiList)stickers,polls,permissions,messages,threads,pins,searchemojiUploads,stickerUploadsmemberInfo,roleInfo,channelInfo,voiceStatus,eventsroles(role add/remove, defaultfalse)channels(channel/category create/edit/delete/move, defaultfalse)moderation(timeout/kick/ban, defaultfalse)presence(bot status/activity, defaultfalse)
Read recent messages
{
"action": "readMessages",
"channelId": "123",
"limit": 20
}
Fetch a single message
{
"action": "fetchMessage",
"guildId": "999",
"channelId": "123",
"messageId": "456"
}
{
"action": "fetchMessage",
"messageLink": "https://discord.com/channels/999/123/456"
}
Send/edit/delete a message
{
"action": "sendMessage",
"to": "channel:123",
"content": "Hello from OpenClaw"
}
With media attachment:
{
"action": "sendMessage",
"to": "channel:123",
"content": "Check out this audio!",
"mediaUrl": "file:///tmp/audio.mp3"
}
touses formatchannel:<id>oruser:<id>for DMs (notchannelId!)mediaUrlsupports local files (file:///path/to/file) and remote URLs (https://...)- Optional
replyTowith a message ID to reply to a specific message
{
"action": "editMessage",
"channelId": "123",
"messageId": "456",
"content": "Fixed typo"
}
{
"action": "deleteMessage",
"channelId": "123",
"messageId": "456"
}
Threads
{
"action": "threadCreate",
"channelId": "123",
"name": "Bug triage",
"messageId": "456"
}
{
"action": "threadList",
"guildId": "999"
}
{
"action": "threadReply",
"channelId": "777",
"content": "Replying in thread"
}
Pins
{
"action": "pinMessage",
"channelId": "123",
"messageId": "456"
}
{
"action": "listPins",
"channelId": "123"
}
Search messages
{
"action": "searchMessages",
"guildId": "999",
"content": "release notes",
"channelIds": ["123", "456"],
"limit": 10
}
Member + role info
{
"action": "memberInfo",
"guildId": "999",
"userId": "111"
}
{
"action": "roleInfo",
"guildId": "999"
}
List available custom emojis
{
"action": "emojiList",
"guildId": "999"
}
Role changes (disabled by default)
{
"action": "roleAdd",
"guildId": "999",
"userId": "111",
"roleId": "222"
}
Channel info
{
"action": "channelInfo",
"channelId": "123"
}
{
"action": "channelList",
"guildId": "999"
}
Channel management (disabled by default)
Create, edit, delete, and move channels and categories. Enable via discord.actions.channels: true.
Create a text channel:
{
"action": "channelCreate",
"guildId": "999",
"name": "general-chat",
"type": 0,
"parentId": "888",
"topic": "General discussion"
}
type: Discord channel type integer (0 = text, 2 = voice, 4 = category; other values supported)parentId: category ID to nest under (optional)topic,position,nsfw: optional
Create a category:
{
"action": "categoryCreate",
"guildId": "999",
"name": "Projects"
}
Edit a channel:
{
"action": "channelEdit",
"channelId": "123",
"name": "new-name",
"topic": "Updated topic"
}
- Supports
name,topic,position,parentId(null to remove from category),nsfw,rateLimitPerUser
Move a channel:
{
"action": "channelMove",
"guildId": "999",
"channelId": "123",
"parentId": "888",
"position": 2
}
parentId: target category (null to move to top level)
Delete a channel:
{
"action": "channelDelete",
"channelId": "123"
}
Edit/delete a category:
{
"action": "categoryEdit",
"categoryId": "888",
"name": "Renamed Category"
}
{
"action": "categoryDelete",
"categoryId": "888"
}
Voice status
{
"action": "voiceStatus",
"guildId": "999",
"userId": "111"
}
Scheduled events
{
"action": "eventList",
"guildId": "999"
}
Moderation (disabled by default)
{
"action": "timeout",
"guildId": "999",
"userId": "111",
"durationMinutes": 10
}
Bot presence/activity (disabled by default)
Set the bot's online status and activity. Enable via discord.actions.presence: true.
Discord bots can only set name, state, type, and url on an activity. Other Activity fields (details, emoji, assets) are accepted by the gateway but silently ignored by Discord for bots.
How fields render by activity type:
- playing, streaming, listening, watching, competing:
activityNameis shown in the sidebar under the bot's name (e.g. "with fire" for type "playing" and name "with fire").activityStateis shown in the profile flyout. - custom:
activityNameis ignored. OnlyactivityStateis displayed as the status text in the sidebar. - streaming:
activityUrlmay be displayed or embedded by the client.
Set playing status:
{
"action": "setPresence",
"activityType": "playing",
"activityName": "with fire"
}
Result in sidebar: "with fire". Flyout shows: "Playing: with fire"
With state (shown in flyout):
{
"action": "setPresence",
"activityType": "playing",
"activityName": "My Game",
"activityState": "In the lobby"
}
Result in sidebar: "My Game". Flyout shows: "Playing: My Game (newline) In the lobby".
Set streaming (optional URL, may not render for bots):
{
"action": "setPresence",
"activityType": "streaming",
"activityName": "Live coding",
"activityUrl": "https://twitch.tv/example"
}
Set listening/watching:
{
"action": "setPresence",
"activityType": "listening",
"activityName": "Spotify"
}
{
"action": "setPresence",
"activityType": "watching",
"activityName": "the logs"
}
Set a custom status (text in sidebar):
{
"action": "setPresence",
"activityType": "custom",
"activityState": "Vibing"
}
Result in sidebar: "Vibing". Note: activityName is ignored for custom type.
Set bot status only (no activity/clear status):
{
"action": "setPresence",
"status": "dnd"
}
Parameters:
activityType:playing,streaming,listening,watching,competing,customactivityName: text shown in the sidebar for non-custom types (ignored forcustom)activityUrl: Twitch or YouTube URL for streaming type (optional; may not render for bots)activityState: forcustomthis is the status tex
Content truncated.
More by openclaw
View all skills by openclaw →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
pdf-to-markdown
aliceisjustplaying
Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.
Related MCP Servers
Browse all serversUnlock browser automation studio with Browserbase MCP Server. Enhance Selenium software testing and AI-driven workflows
Rtfmbro is an MCP server for config management tools—get real-time, version-specific docs from GitHub for Python, Node.j
Integrate the Spotify API to search music, control playback, and manage playlists—ideal for Spotify developers needing m
Advanced Discord bot for moderation, automation, and server management with bulk tools, privacy, and webhook support.
Access vetted human experts on demand with GoPluto AI — fast, reliable answers when you need real people.
Automate web tasks with Playwright's browser control—ideal for web scraper needs, scraping tasks, and top web scraping t
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.