Skip to main content
Glama

discord_reset_channel_permissions

Reset a Discord channel's permissions by removing all overwrites, restoring inheritance from parent categories or server settings.

Instructions

Remove ALL permission overwrites on a channel (reset to inherited).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channel_idYes
reasonNo

Implementation Reference

  • The handler implementation for the `discord_reset_channel_permissions` tool, which clears all permission overwrites on a specified channel.
    case "discord_reset_channel_permissions": {
      const channel = await getGuildChannel(args.channel_id as string);
      await channel.permissionOverwrites.set([], args.reason as string | undefined);
      return { content: [{ type: "text", text: `✅ All permission overwrites cleared on #${channel.name}.` }] };
    }
  • The definition and input schema for the `discord_reset_channel_permissions` tool.
    {
      name: "discord_reset_channel_permissions",
      description: "Remove ALL permission overwrites on a channel (reset to inherited).",
      inputSchema: {
        type: "object",
        properties: {
          channel_id: { type: "string" },
          reason: { type: "string" },
        },
        required: ["channel_id"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PaSympa/discord-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server