Skip to main content
Glama
1cz1

discord-sovereign-mcp

by 1cz1

Why a sovereignty guard? Discord's permission model is hierarchical: role position, not permission flags, decides who can do what. The single most common cause of Missing Permissions failures in LLM-driven admin bots is acting from a role that thinks it has permissions but sits below the roles it tries to manage. This server refuses to act until the client provably sits at the top of the ladder.

Capabilities

  • 46 tools across six areas — control, guilds, channels, members, scaffolding, OAuth — all snake_case, discord_-prefixed, schema-strict, and documented in TOOLS.md.

  • Sovereign Control Guard: every destructive tool is dry_run by default and must pass discord_assert_sovereignty before executing with dry_run: false — enforced on the server side, not just in prompts.

  • One-shot server scaffolding (discord_scaffold_server): roles, categories, channels, and permission overwrites from a declarative template (minimal / community / mod / social), with guard-once, per-step failure isolation, and partial-failure reconciliation output.

  • OAuth2 bootstrap for user-token mode (npx discord-sovereign-mcp --oauth), plus a built-in /callback handler when running over HTTP transport.

  • Both transports: stdio (MCP clients) and Streamable HTTP (POST /mcp, GET /health).

  • Safety rails: guild allowlist (DISCORD_ALLOWED_GUILDS), audit-log reasons, idempotency checks, dry_run previews that return the exact API payload, and a read-only permission calculator/auditor.

Related MCP server: Discord Server Creator MCP

Quick start

# Option A — run directly (OAuth2 user-token bootstrap included)
npx discord-sovereign-mcp@latest --oauth

# Option B — from source
npm install
cp .env.example .env        # then edit: DISCORD_TOKEN (or OAuth2 vars)
npm run build
npm test                    # 60 unit tests

Then point your MCP client at the server — per-client configs live in examples/mcp/ (Claude Code, Codex, opencode, Cursor, Windsurf, Continue).

  1. Create an application at https://discord.com/developers/applications.

  2. Under Bot: create the bot, copy the token, enable SERVER MEMBERS INTENT and MESSAGE CONTENT INTENT.

  3. Under OAuth2 → URL Generator: scope bot, permissions Administrator, invite the bot to your server. (Administrator is required for server-scoped operations; the guard still enforces role position.)

  4. DISCORD_TOKEN=<token> in .env, DISCORD_TOKEN_TYPE=bot (or auto).

Option B — user token via OAuth2

  1. Create an application; under OAuth2 → General add a redirect http://localhost:8788/callback.

  2. Set DISCORD_OAUTH2_CLIENT_ID, DISCORD_OAUTH2_CLIENT_SECRET, DISCORD_OAUTH2_REDIRECT_URI in .env.

  3. npx discord-sovereign-mcp@latest --oauth — opens the authorization URL, waits for the callback, and writes the user token into .env (DISCORD_TOKEN_TYPE=oauth2).

Run

npm run dev            # tsx, stdio transport
npm run start          # built dist/, stdio transport
TRANSPORT=http npm run start    # HTTP transport (POST /mcp, GET /health)

Architecture

┌────────────────────────────┐        ┌──────────────────────────────────────────┐
│  MCP client                │  MCP   │  discord-sovereign-mcp (Node 20+)          │
│  Claude Code / Codex /     │◄──────►│  stdio  or  Streamable HTTP (POST /mcp)    │
│  opencode / Cursor / ...   │        │                                           │
└────────────────────────────┘        │  registry ── 46 strict-zod tools           │
                                      │    │                                       │
                                      │    ▼                                       │
                                      │  guard() ── ControlService.assertControl  │
                                      │    │  owner? (user token)                  │
                                      │    │  #1 role? (bot token)                 │
                                      │    │  DISCORD_ALLOWED_GUILDS?               │
                                      │    ▼                                       │
                                      │  DiscordClient ── @discordjs/rest REST API │
                                      │  PermissionService (read-only auditor)     │
                                      │  ScaffoldService (template planner)        │
                                      │  OAuthService (user-token bootstrap)       │
                                      └──────────────────────────────────────────┘

Environment variables

Variable

Default

Description

DISCORD_TOKEN

Bot or OAuth2 user token (required).

DISCORD_TOKEN_TYPE

auto

auto | bot | oauth2 | user. auto detects bot vs user from the token.

DISCORD_ALLOWED_GUILDS

(empty = all)

Comma-separated guild IDs. When set, every tool refuses guilds outside the list — even if sovereignty is held.

TRANSPORT

stdio

stdio | http.

HTTP_HOST / HTTP_PORT

127.0.0.1 / 3000

HTTP transport bind address/port.

DISCORD_OAUTH2_CLIENT_ID

OAuth2 application client ID.

DISCORD_OAUTH2_CLIENT_SECRET

OAuth2 application client secret.

DISCORD_OAUTH2_REDIRECT_URI

http://localhost:8788/callback

Must match the redirect registered in the Discord developer portal.

DISCORD_OAUTH2_PORT

8788

Local callback port used by --oauth.

AUDIT_REASON

via discord-sovereign-mcp

Audit-log reason stamped on actions.

LOG_LEVEL

info

info | debug | warn | error.

The Sovereignty Guard

  • discord_assert_sovereignty — read-only verdict: prints the full role ladder with positions and flags the client role. Controlled = client owns the guild (user mode) or holds the #1 role (bot mode).

  • discord_elevate_control — moves the client role to the top of the ladder, then re-verifies. Never fails silently: if the API rejects the reorder, the error explains that a human must drag the role above the roles it couldn't outrank.

  • Every destructive tool runs the same gate (assertControl) before its first mutating call when dry_run: false — awaited server-side, so a guard failure can never be dropped.

Scaffolding

discord_scaffold_server builds a whole server from a template in one call:

{
  "guild_id": "1234567890",
  "template": "community",          // minimal | community | mod | social
  "dry_run": false
}

It executes in safe order — roles lowest-first, then categories, then channels (with parent wiring), then permission overwrites — guarding once before the first step. Each step is isolated: on failure the tool returns steps_total / steps_completed / steps_failed plus the already-created role/channel IDs so a partial scaffold can be reconciled by hand.

AI client configs

Client

Config file

Server invocation

Claude Code

.mcp.json

npx discord-sovereign-mcp@latest

Codex CLI

codex-config.toml

npx discord-sovereign-mcp@latest

opencode

opencode.json

npx discord-sovereign-mcp@latest

Cursor

.cursor/mcp.json

npx discord-sovereign-mcp@latest

Windsurf

windsurf-mcp.json

npx discord-sovereign-mcp@latest

Continue

continue-config.json

npx discord-sovereign-mcp@latest

Ready-to-paste files: examples/mcp/.

Evaluation

npm run eval               # offline: registry invariants (no token, no network)
npm run eval -- --live     # spawns dist/ and runs protocol-level checks against real Discord

Project layout

src/
  index.ts                 # entrypoint: stdio + HTTP transports, /health, /callback
  config.ts                # typed env config + guild allowlist
  constants.ts             # server identity, permission/color constants
  client/                  # Discord REST client + error translation
  services/                # control (sovereignty), permissions, scaffolding, OAuth
  tools/                   # 46 RegisteredTools + registry wiring + shared zod schemas
  utils/                   # formatting (bigint-safe JSON)
tests/                     # vitest suite (60 tests)
scripts/                   # oauth bootstrap, eval runner, docs generator

Development

npm run typecheck   # tsc --noEmit
npm run test        # vitest run
npm run test:watch
npm run test:coverage
npm run oauth       # OAuth2 user-token bootstrap
npm run eval        # offline registry checks (add --live for protocol checks)
npx tsx scripts/gen-tools-doc.ts   # regenerate TOOLS.md

Docs

  • TOOLS.md — full reference for all 46 tools (generated).

  • SPEC.md — design spec: threat model, guard semantics, tool contracts.

  • RECIPES.md — end-to-end recipes for common workflows.

  • SECURITY.md — threat model, token handling, and reporting policy.

License

MIT — see LICENSE.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    Enables AI clients to manage Discord servers through natural language, offering tools for guilds, channels, messages, roles, members, webhooks, invites, and automations. Includes a conversational agent that responds to @mentions in Discord.
    8
    Apache 2.0
  • F
    license
    -
    quality
    B
    maintenance
    Gives AI agents full control over Discord server creation and configuration. Exposes 36 tools covering guild lifecycle, channels, roles, members, content, messages, templates, and a declarative blueprint engine.
  • F
    license
    -
    quality
    B
    maintenance
    Enables AI assistants to manage a Discord server, including creating channels, categories, roles, setting permissions, and assigning roles through natural language commands.

View all related MCP servers

Related MCP Connectors

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • MCP server for Gainium — manage trading bots, deals, and balances via AI assistants

  • Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer

View all MCP Connectors

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/1cz1/discord-sovereign-mcp'

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