memory vs mcp-gitlab-server
并排对比,帮你在这两个 MCP server 之间做选择。
memory by modelcontextprotocol | mcp-gitlab-server by yoda-digital | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 知识库 / RAGAI / LLM 工具效率工具 | 开发者工具运维基建效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
mcp-gitlab-server · 概述
生产级 GitLab MCP 服务器,提供 86 个工具,完整 API 覆盖,多种认证模式和传输方式。
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
mcp-gitlab-server · 使用场景
- 使 AI 助手能够管理 GitLab 代码库,创建问题和合并请求
- 通过 AI 代理自动化 CI/CD 管道管理
- 通过兼容 MCP 的客户端向团队成员提供 GitLab 访问权限,而无需直接 API 访问
memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .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"]
}
}
}mcp-gitlab-server · 安装
安装
使用 npm(适用于 Claude Desktop、Cursor、Zed)
添加到您的客户端 MCP 配置中(例如 claude_desktop_config.json):
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "@yoda.digital/gitlab-mcp-server"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "glpat-…",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}使用 Docker(远程部署)
docker run --rm -p 3000:3000 \
-e HOST=0.0.0.0 \
-e AUTH_MODE=oauth \
-e USE_STREAMABLE_HTTP=true \
ghcr.io/yoda-digital/mcp-gitlab-server:latest使用 Helm(Kubernetes)
helm install gitlab-mcp oci://ghcr.io/yoda-digital/charts/gitlab-mcp