MCP Catalogs
Home

memory vs BitbucketMcpServers

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

memory
by modelcontextprotocol
BitbucketMcpServers
by peakflames
Stars★ 85,748★ 3
30d uses
Score7738
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
Developer ToolsGitHubProductivity
LanguageTypeScriptC#
Last committhis month3 mo ago

memory · Summary

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

BitbucketMcpServers · Summary

C# implementation of MCP server for Bitbucket integration with pull request operations.

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

BitbucketMcpServers · Use cases

  • Automate Bitbucket pull request management through MCP-enabled AI assistants
  • Integrate Bitbucket operations into AI-powered development workflows
  • Provide AI assistants with access to Bitbucket repository information

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"]
    }
  }
}

BitbucketMcpServers · Install

Installation

Via Docker (Recommended)

  1. Pull the Docker image:
docker pull peakflames/bitbucket-remote-mcp-server
  1. Create an appsettings.json file with your Bitbucket account name:
{
  "BitbucketCloudConfig": {
    "AccountName": "your-workspace-name"
  }
}
  1. Run with OAuth 2.0 credentials:
docker run -d \
  --name bitbucket-mcp-server \
  -p 8080:8080 \
  -e BITBUCKET_MCP_CONSUMER_KEY="your_consumer_key" \
  -e BITBUCKET_MCP_SECRET_KEY="your_secret_key" \
  -v $(pwd)/appsettings.json:/app/appsettings.json \
  peakflames/bitbucket-remote-mcp-server

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "Bitbucket": {
      "command": "docker",
      "args": ["run", "--rm", "-p", "8080:8080", "peakflames/bitbucket-remote-mcp-server"],
      "transportType": "sse",
      "url": "http://localhost:8080/sse"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.