mcp-server-atlassian-confluence vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-atlassian-confluence by aashari | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 54 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-server-atlassian-confluence · Summary
MCP server connecting AI assistants to Atlassian Confluence knowledge bases with API tools for spaces, pages, and search.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-atlassian-confluence · Use cases
- Developers querying API documentation and technical guides in Confluence
- Product managers searching for requirements and project updates across spaces
- Support teams finding troubleshooting guides and knowledge base articles
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-atlassian-confluence · Install
Installation
- **Install the package globally:**
``bash npm install -g @aashari/mcp-server-atlassian-confluence ``
- **Configure for Claude Desktop:**
Add this to your Claude configuration file (~/.claude/claude_desktop_config.json): ``json { "mcpServers": { "confluence": { "command": "npx", "args": ["-y", "@aashari/mcp-server-atlassian-confluence"], "env": { "ATLASSIAN_SITE_NAME": "your-company", "ATLASSIAN_USER_EMAIL": "your.email@company.com", "ATLASSIAN_API_TOKEN": "your_api_token" } } } } ``
- **Set environment variables** (alternative method):
``bash export ATLASSIAN_SITE_NAME="your-company" export ATLASSIAN_USER_EMAIL="your.email@company.com" export ATLASSIAN_API_TOKEN="your_api_token" ``
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