stash-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
stash-mcp by diomonogatari | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | 3 mo ago | this month |
stash-mcp · Summary
A production-ready MCP server for Atlassian Bitbucket Server with 40 tools and robust resilience features.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
stash-mcp · Install
Docker Installation
- Install Docker Desktop
- Set up environment variables:
``bash export BITBUCKET_URL="https://your-stash-server.com/" export BITBUCKET_TOKEN="your_personal_access_token" ``
- 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" } } } ``
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