MCP Catalogs
Home

stash-mcp vs filesystem

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

stash-mcp
by diomonogatari
filesystem
by modelcontextprotocol
Stars★ 4★ 85,748
30d uses
Score4177
Official
Categories
Developer ToolsProductivityOps & Infra
File SystemDeveloper 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.

filesystem · Summary

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

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

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

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

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.

Comparison generated from public README + GitHub signals. Last updated automatically.