memory vs zendesk-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | zendesk-mcp-server by reminia | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
zendesk-mcp-server · Summary
A comprehensive MCP server for Zendesk integration with ticket management and knowledge base access.
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
zendesk-mcp-server · Use cases
- Automate customer support ticket management through AI assistants
- Retrieve and analyze support tickets for trend identification
- Draft responses to customer inquiries based on ticket context
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"]
}
}
}zendesk-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/reminia/zendesk-mcp-server.git - Create virtual environment and install dependencies:
uv venv && uv pip install -e . - Copy
.env.exampleto.envand add your Zendesk credentials - Configure in Claude Desktop:
{
"mcpServers": {
"zendesk": {
"command": "uv",
"args": [
"--directory",
"/path/to/zendesk-mcp-server",
"run",
"zendesk"
]
}
}
}Docker Option
- Copy
.env.exampleto.envand fill in your credentials - Build the image:
docker build -t zendesk-mcp-server . - Run with:
docker run --rm --env-file /path/to/.env zendesk-mcp-server