> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-studio-tools-doc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Discord

> Use Discord with Agno agents.

Agno agents integrate with Discordd to autonomously manage communities, bridge external tools, and facilitate complex human-in-the-loop (HITL) workflows.

## Prerequisites

* Set DISCORD\_BOT\_TOKEN environment variable

```python theme={null}

import os

from agno.agent import Agent
from agno.tools.discord import DiscordTools

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

# Get Discord token from environment
discord_token = os.getenv("DISCORD_BOT_TOKEN")

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    if not discord_token:
        raise ValueError("DISCORD_BOT_TOKEN not set")

    # Example 1: Enable all Discord functions
    discord_agent_all = Agent(
        name="Discord Agent - All Functions",
        instructions=[
            "You are a Discord bot with access to all Discord operations.",
            "You can send messages, manage channels, read history, and manage messages.",
        ],
        tools=[
            DiscordTools(
                bot_token=discord_token,
                all=True,  # Enable all Discord functions
            )
        ],
        markdown=True,
    )

    # Example 2: Enable specific Discord functions only
    discord_agent_specific = Agent(
        name="Discord Agent - Specific Functions",
        instructions=[
            "You are a Discord bot with limited operations.",
            "You can only send messages and read message history.",
        ],
        tools=[
            DiscordTools(
                bot_token=discord_token,
                enable_send_message=True,
                enable_get_channel_messages=True,
                enable_get_channel_info=False,
                enable_list_channels=False,
                enable_delete_message=False,
            )
        ],
        markdown=True,
    )

    # Example 3: Default behavior with specific configurations
    discord_agent = Agent(
        name="Discord Agent - Default",
        instructions=[
            "You are a Discord bot that can perform various operations.",
            "You can send messages, read message history, manage channels, and delete messages.",
        ],
        tools=[
            DiscordTools(
                bot_token=discord_token,
                enable_send_message=True,
                enable_get_channel_messages=True,
                enable_get_channel_info=True,
                enable_list_channels=True,
                enable_delete_message=True,
            )
        ],
        markdown=True,
    )

    # Replace with your Discord IDs
    channel_id = "YOUR_CHANNEL_ID"
    server_id = "YOUR_SERVER_ID"

    # Example usage with all functions enabled
    print("=== Example 1: Using all Discord functions ===")
    discord_agent_all.print_response(
        f"Send a message 'Hello from Agno with all functions!' to channel {channel_id}",
        stream=True,
    )

    # Example usage with specific functions only
    print("\n=== Example 2: Using specific Discord functions ===")
    discord_agent_specific.print_response(
        f"Send a message 'Hello from limited bot!' to channel {channel_id}", stream=True
    )

    # Example usage with default configuration
    print("\n=== Example 3: Default Discord agent usage ===")
    discord_agent.print_response(
        f"Send a message 'Hello from Agno!' to channel {channel_id}", stream=True
    )

    discord_agent.print_response(
        f"Get information about channel {channel_id}", stream=True
    )

    discord_agent.print_response(
        f"List all channels in server {server_id}", stream=True
    )

    discord_agent.print_response(
        f"Get the last 5 messages from channel {channel_id}", stream=True
    )

    # Example: Delete a message (replace message_id with an actual message ID)
    # message_id = 123456789
    # discord_agent.print_response(
    #     f"Delete message {message_id} from channel {channel_id}",
    #     stream=True
    # )
```

## Run the Example

```bash theme={null}
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/91_tools

# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate

# Export relevant API keys
export DISCORD_BOT_TOKEN="***"

python discord_tools.py
```

For details, see [Discord cookbook](https://github.com/agno-agi/agno/blob/main/cookbook/91_tools/discord_tools.py).
