MCP Catalogs
Home

filesystem vs BitbucketMcpServers

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

filesystem
by modelcontextprotocol
BitbucketMcpServers
by peakflames
Stars★ 85,748★ 3
30d uses
Score7738
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsGitHubProductivity
LanguageTypeScriptC#
Last committhis month3 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

BitbucketMcpServers · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.