com um clique
discord
Send messages, react, manage threads/pins, run polls, and moderate Discord channels via the Discord API.
Menu
Send messages, react, manage threads/pins, run polls, and moderate Discord channels via the Discord API.
Code review assistance with linting, style checking, and best practices
Git workflow guidance for commits, branches, and pull requests
Orchestrate external coding agents (Claude Code, Codex CLI, OpenCode) via background processes for automated code tasks, PR reviews, and parallel issue fixing.
Interact with GitHub using the gh CLI. Use gh issue, gh pr, gh run, and gh api for issues, PRs, CI runs, and advanced queries.
Notion API for creating and managing pages, databases, and blocks. Use when working with Notion workspaces.
Work with Obsidian vaults (plain Markdown notes). Search, create, move, and edit notes.
| name | discord |
| description | Send messages, react, manage threads/pins, run polls, and moderate Discord channels via the Discord API. |
| metadata | {"version":"1.0.0","requires":{"env":["DISCORD_BOT_TOKEN"]}} |
Interact with Discord using the Discord REST API. Requires a bot token.
DISCORD_BOT_TOKEN environment variablecurl -s -X POST "https://discord.com/api/v10/channels/{channelId}/messages" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content": "Hello from Agno!"}'
curl -s -X PUT "https://discord.com/api/v10/channels/{channelId}/messages/{messageId}/reactions/%E2%9C%85/@me" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN"
curl -s "https://discord.com/api/v10/channels/{channelId}/messages?limit=20" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN"
curl -s -X PATCH "https://discord.com/api/v10/channels/{channelId}/messages/{messageId}" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content": "Updated text"}'
curl -s -X DELETE "https://discord.com/api/v10/channels/{channelId}/messages/{messageId}" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN"
curl -s -X POST "https://discord.com/api/v10/channels/{channelId}/messages/{messageId}/threads" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "Discussion Thread"}'
curl -s -X PUT "https://discord.com/api/v10/channels/{channelId}/pins/{messageId}" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN"
curl -s "https://discord.com/api/v10/guilds/{guildId}/members/{userId}" \
-H "Authorization: Bot $DISCORD_BOT_TOKEN"