mcp-discord vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-discord by barryyip0625 | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-discord · Summary
A complete MCP server for Discord integration, enabling AI assistants to manage servers, channels, messages, roles, and more.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-discord · Use cases
- Automating Discord server management and moderation tasks
- Creating AI-powered Discord bots that can interact with channels and users
- Building custom integrations between Discord and other AI tools
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
mcp-discord · Install
Installation
NPM
npx mcp-discord --config ${DISCORD_TOKEN}Docker
docker pull barryy625/mcp-discord:latest
docker run -e DISCORD_TOKEN=your_discord_bot_token -p 8080:8080 barryy625/mcp-discord:latestClaude Desktop Configuration
{
"mcpServers": {
"discord": {
"command": "node",
"args": [
"path/to/mcp-discord/build/index.js"
],
"env": {
"DISCORD_TOKEN": "your_discord_bot_token"
}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}