MCP Catalogs
Home

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
Score4177
Official
Categories
Developer ToolsProductivityOps & Infra
Knowledge GraphAI / LLM ToolsProductivity
LanguageC#TypeScript
Last commit3 mo agothis 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

  1. Install Docker Desktop
  2. Set up environment variables:

``bash export BITBUCKET_URL="https://your-stash-server.com/" export BITBUCKET_TOKEN="your_personal_access_token" ``

  1. 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.