discord-manage-channel

Update or delete Discord channels via the Discord API v10.

520|175|Updated Apr 8, 2026
One-click install
npx skills add https://github.com/evolution-foundation/evo-nexus --skill discord-manage-channel-evolution-foundation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: discord-manage-channel
Source: https://github.com/evolution-foundation/evo-nexus/tree/main/.claude/skills/discord-manage-channel
Command: npx skills add https://github.com/evolution-foundation/evo-nexus --skill discord-manage-channel-evolution-foundation

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves the problem of manually managing Discord server channels by letting you programmatically rename, reorganize, and update channel settings through the Discord API with clear validation and feedback.

Core Features & Use Cases

  • Channel Updates (PATCH): Rename channels, update topics, move channels between categories, change positions, toggle NSFW, and adjust voice settings like user limit and bitrate.
  • Permission Management: Apply permission overwrites to make channels private, read-only, or custom-access based on role/user IDs.
  • Channel Deletion (DELETE): Permanently delete channels with explicit, destructive-action guidance and error handling.

Quick Start

Ask the skill to rename the Discord channel with ID 123456789012345678 to "general-discussion" and update its topic to "Discuss announcements and updates".

Frequently Asked Questions about discord-manage-channel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I rename a Discord channel and update its topic using the API?

To rename a Discord channel and update its topic, you perform a channel PATCH update via the Discord API v10, sending a validated payload with the new name and topic properties alongside your DISCORD_BOT_TOKEN and the channel snowflake ID.

Can I update Discord voice channel settings like bitrate and user limit through the API?

Yes, you can update Discord voice channel settings by sending a PATCH request that adjusts voice properties such as bitrate and user limit, provided you supply a valid channel ID and validate the payload constraints.

How do I apply permission overwrites to make a Discord channel private?

Applying permission overwrites to make a Discord channel private involves sending a PATCH update with role or user ID configurations that restrict channel access, managed through the Discord API v10.

What do I need to manage Discord channels via the API?

Managing Discord channels via the API requires a DISCORD_BOT_TOKEN, a valid 18–19 digit channel snowflake ID, and payload validation for allowed channel property constraints in Discord API v10.

Can I permanently delete a Discord channel through an API request?

Yes, you can permanently delete a Discord channel by performing a channel DELETE action through the Discord API, which includes explicit destructive-action guidance and error handling.

How do I move a Discord channel to a different category?

Moving a Discord channel to a different category is done by executing a channel PATCH update that modifies the parent ID property, reorganizing the channel position within the server hierarchy.