filesystem vs sonarqube-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | sonarqube-mcp-server by SonarSource | |
|---|---|---|
| Stars | ★ 85,748 | ★ 554 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsMonitoringSecurity |
| Language | TypeScript | Java |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
sonarqube-mcp-server · Summary
SonarQube MCP Server enables code quality and security analysis within AI agents via the MCP protocol.
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
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
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.
sonarqube-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.