MCP Server
Active
io.github.OrygnsCode/omnicord MCP Server
io.github.OrygnsCode/omnicord
What is the io.github.OrygnsCode/omnicord MCP server?
Your AI runs your Discord server: chat, moderation, admin, even building it all from one brief.
How to install io.github.OrygnsCode/omnicord
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
DISCORD_TOKENrequiredsecretBot token from the Discord Developer Portal. The init wizard sets this up.
OMNICORD_GUILDOptional default server id so tools can omit the guild parameter.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"omnicord": {
"command": "npx",
"args": [
"-y",
"@orygn/omnicord"
],
"env": {
"DISCORD_TOKEN": "<YOUR_DISCORD_TOKEN>",
"OMNICORD_GUILD": "<YOUR_OMNICORD_GUILD>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"omnicord": {
"command": "npx",
"args": [
"-y",
"@orygn/omnicord"
],
"env": {
"DISCORD_TOKEN": "<YOUR_DISCORD_TOKEN>",
"OMNICORD_GUILD": "<YOUR_OMNICORD_GUILD>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"omnicord": {
"command": "npx",
"args": [
"-y",
"@orygn/omnicord"
],
"env": {
"DISCORD_TOKEN": "<YOUR_DISCORD_TOKEN>",
"OMNICORD_GUILD": "<YOUR_OMNICORD_GUILD>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"omnicord": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@orygn/omnicord"
],
"env": {
"DISCORD_TOKEN": "<YOUR_DISCORD_TOKEN>",
"OMNICORD_GUILD": "<YOUR_OMNICORD_GUILD>"
}
}
}
}Claude Code
claude mcp add omnicord --env DISCORD_TOKEN=<YOUR_DISCORD_TOKEN> --env OMNICORD_GUILD=<YOUR_OMNICORD_GUILD> -- npx -y @orygn/omnicordRelated MCP servers
OPA MCP
Active
Author, validate, debug, and explain OPA Rego policies through any MCP-compatible client.
4
View repository →TypeScript
MIT