stash-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
stash-mcp by diomonogatari | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOps & Infra | Knowledge GraphAI / LLM ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 3 mo ago | this month |
stash-mcp · Summary
A production-ready MCP server for Atlassian Bitbucket Server with 40 tools and robust resilience features.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
stash-mcp · Use cases
- Automating code review workflows with AI assistants that can analyze diffs and suggest improvements
- Repository exploration and codebase analysis for onboarding new team members
- Bug investigation by searching through commit history and code changes
- CI/CD status monitoring and integration with AI assistants for build notifications
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
stash-mcp · Install
Docker Installation
- Install Docker Desktop
- Set up environment variables:
``bash export BITBUCKET_URL="https://your-stash-server.com/" export BITBUCKET_TOKEN="your_personal_access_token" ``
- Add to VS Code MCP configuration:
``json { "servers": { "stash-bitbucket": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "BITBUCKET_URL", "-e", "BITBUCKET_TOKEN", "diomonogatari/stash-mcp:latest" ], "env": { "BITBUCKET_URL": "https://your-stash-server.com/", "BITBUCKET_TOKEN": "your_personal_access_token" }, "type": "stdio" } } } ``
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"]
}
}
}