Home / MCP / mcp-discord-chat MCP Server

mcp-discord-chat MCP Server

Provides a simple note storage MCP server with add-note and summarize-notes capabilities for managing and summarizing notes.

typescript
Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
    "mcpServers": {
        "mcp_discord_chat": {
            "command": "uv",
            "args": [
                "run",
                "mcp-discord-chat"
            ]
        }
    }
}

You run an MCP server that provides a simple note storage system with a custom note:// scheme, plus prompts to summarize notes and a tool to add notes. This setup lets you store notes, access them by name, generate summaries across all notes, and keep clients in sync as resources change.

How to use

You interact with the server through an MCP client. The server stores notes that have a name, description, and text content. You can add new notes using the add-note tool, and you can request a summary of all notes using the summarize-notes prompt. When you add or update notes, connected clients are notified about resource changes so your UI stays up to date.

How to install

Prerequisites you need before starting the MCP server are installed runtimes for your environment and an MCP client configured to reach the server, either via standard input/output (stdio) or a remote HTTP endpoint.

# Development / local runtime (stdio)
uv run mcp-discord-chat
```

```
# Published / runtime-ready (stdio)
uvx mcp-discord-chat

Additional configuration and startup details

To run the MCP server locally during development, you can start it with the development command shown here. This runs the server as a stdio process named mcp-discord-chat and points to its runtime directory.

uv run mcp-discord-chat

Notes on configuration and tooling

Prompts and tools are built into the server. The server exposes a single prompt to summarize notes and one tool to add a new note.

Available tools

add-note

Adds a new note to the server. Requires a name and content string; updates server state and notifies connected clients of resource changes.