Skip to content
VS Code

omnicord for VS Code

io.github.orygnscode/omnicord

Discord server management MCP for AI agents: chat, moderation, admin, and full server building.

client:VS Code transport:stdio runtime:npm

Install omnicord in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "discord-token",
      "description": "DISCORD_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "omnicord-guild",
      "description": "OMNICORD_GUILD",
      "password": true
    }
  ],
  "servers": {
    "omnicord": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@orygn/omnicord"
      ],
      "env": {
        "DISCORD_TOKEN": "${input:discord-token}",
        "OMNICORD_GUILD": "${input:omnicord-guild}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

omnicord in other clients