mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by bitwarden | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 165 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | SecurityProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server · Summary
MCP server providing AI assistants with secure access to Bitwarden password manager vault management and organization administration features.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- AI assistants retrieving and managing passwords and secure notes from Bitwarden vault
- Automating organization administration tasks like member management and collection creation
- Generating and storing secure passwords directly through AI assistants
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
mcp-server · Install
Installation
- Install the Bitwarden CLI globally:
npm install -g @bitwarden/cli - Add to your Claude Desktop configuration:
{
"mcpServers": {
"bitwarden": {
"command": "npx",
"args": ["-y", "@bitwarden/mcp-server"],
"env": {
"BW_SESSION": "your-session-token-here"
}
}
}
}- Get your session token:
bw login; bw unlock --raw - For organization features, also add
BW_CLIENT_IDandBW_CLIENT_SECRETenvironment variables.
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