MCP Catalogs
Home

everything vs BitbucketMcpServers

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

everything
by modelcontextprotocol
BitbucketMcpServers
by peakflames
Stars★ 85,748★ 3
30d uses
Score7738
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsGitHubProductivity
LanguageTypeScriptC#
Last committhis month3 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

BitbucketMcpServers · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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.