MCP Catalogs
Home

bitbucket-mcp vs memory

Side-by-side comparison to help you pick between these two MCP servers.

bitbucket-mcp
by MatanYemini
memory
by modelcontextprotocol
Stars★ 136★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsProductivityGitHub
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last committhis monththis month

bitbucket-mcp · Summary

Bitbucket MCP server enables AI assistants to interact with Bitbucket repositories and pull requests.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

bitbucket-mcp · Use cases

  • Automate PR review and approval processes for Bitbucket repositories
  • Integrate Bitbucket repository information into AI assistants for development workflows
  • Create AI-powered dashboards that monitor Bitbucket pull request activity

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

bitbucket-mcp · Install

Installation

Using NPX (Recommended)

BITBUCKET_URL="https://api.bitbucket.org/2.0" \
BITBUCKET_WORKSPACE="your-workspace" \
BITBUCKET_USERNAME="your-username" \
BITBUCKET_PASSWORD="your-app-password" \
npx -y bitbucket-mcp@latest

Claude Desktop Configuration

{
  "mcpServers": {
    "bitbucket": {
      "command": "npx",
      "args": ["-y", "bitbucket-mcp@latest"],
      "env": {
        "BITBUCKET_URL": "https://api.bitbucket.org/2.0",
        "BITBUCKET_WORKSPACE": "your-workspace",
        "BITBUCKET_USERNAME": "your-username",
        "BITBUCKET_PASSWORD": "your-app-password"
      }
    }
  }
}

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.