memory vs buttondown-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | buttondown-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 31 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
buttondown-mcp · Summary
MCP server for Buttondown newsletter service with CLI and programmatic API.
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
buttondown-mcp · Use cases
- Newsletter creators managing drafts and scheduling through AI assistants
- Automating email marketing campaigns with LLM integration
- Tracking newsletter performance analytics via AI tools
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"]
}
}
}buttondown-mcp · Install
# Install using pnpm (recommended)
pnpm install
# Or using npm
npm install
# Or using yarn
yarn install
# Start the MCP server
pnpm mcp:startFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"buttondown": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"BUTTONDOWN_API_KEY": "your_api_key"
}
}
}
}