everything vs sonarqube-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | sonarqube-mcp-server by SonarSource | |
|---|---|---|
| Stars | ★ 85,748 | ★ 554 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsMonitoringSecurity |
| Language | TypeScript | Java |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
sonarqube-mcp-server · Summary
SonarQube MCP Server enables code quality and security analysis within AI agents via the MCP protocol.
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
sonarqube-mcp-server · Use cases
- AI-assisted code quality analysis during development
- Automated security issue detection in code reviews
- Integration of SonarQube metrics into AI-powered development workflows
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-everythingsonarqube-mcp-server · Install
Installation
The SonarQube MCP Server is distributed as a Docker container image. The simplest installation method is using the provided container image mcp/sonarqube:
docker run --init --pull=always -i --rm -e SONARQUBE_TOKEN -e SONARQUBE_ORG mcp/sonarqubeFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"sonarqube": {
"command": "docker",
"args": ["run", "--init", "--pull=always", "-i", "--rm", "-e", "SONARQUBE_TOKEN", "-e", "SONARQUBE_ORG", "mcp/sonarqube"],
"env": {
"SONARQUBE_TOKEN": "<YOUR_TOKEN>",
"SONARQUBE_ORG": "<YOUR_ORG>"
}
}
}
}[Configuration Generator](https://mcp.sonarqube.com/config-generator.html) provides an interactive setup tool for various AI clients.