Managing a Discord server is a nightmare of endless clicking.
You create categories. You set up hidden channels. You configure twenty different permission toggles for a single role. And then you do it all over again the next day.
I was tired of it. So I built an AI Discord Agent that lets you manage server actions using natural language.
Meet Execord.
What it actually does
Instead of navigating menus, you just type what you want in plain English.
Most bots require rigid, memorized commands. Execord understands intent and handles the complex API logic for you.
Look at these examples:
/perform create a "Staff" category with 3 private channels inside
/perform create a VIP role and immediately assign it to @John
/perform create a new text channel and post a welcome message inside it
Before executing anything, Execord shows a confirmation step so admins can review the planned actions first. You write the sentence. The AI plans the architecture. You confirm. The bot executes the changes.
Why this is different
There are thousands of Discord bots out there. But most of them still rely on strict /commands with endless parameters.
Execord is an agent, not just a bot.
When you ask it to "give @John the VIP role", it doesn't just crash if it doesn't have the ID. It dynamically looks up John's user data, finds the exact VIP role ID, and then prepares the action for admin confirmation. It handles the context so you don't have to.
How I made it reliable
I built it using Python and the Gemini API.
If you just connect an LLM to Discord, it hallucinates IDs and fails. To fix this, Execord uses a smart two-step pipeline:
- Understand & Fetch: The AI reads your prompt and figures out what real-world data it needs (like looking up channel IDs).
- Execute: It feeds that real data back into the plan, and prepares and runs the confirmed API calls sequentially using structured JSON.
This means it doesn't guess. It verifies first, then acts.
Try it out
I am currently testing this concept and I am genuinely curious: Would you actually use an AI agent like this to run your community, or do you prefer manual control?
You can try Execord for free here:
Execord Website & Documentation
If you want to follow the project, the public GitHub repo is here:
github.com/ittology/Execord
Let me know your thoughts in the comments!
Top comments (0)