MCP Catalogs
Home

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
Score7753
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsMonitoringSecurity
LanguageTypeScriptJava
Last committhis monththis 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/sonarqube

For 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.

Comparison generated from public README + GitHub signals. Last updated automatically.