Server data from the Official MCP Registry
π Kill the Junior AI Era. π€ Level up AI code to automatically Principal standards. π‘οΈ Quality Gate β¨
π Kill the Junior AI Era. π€ Level up AI code to automatically Principal standards. π‘οΈ Quality Gate β¨
Valid MCP server (1 strong, 1 medium validity signals). 8 known CVEs in dependencies (0 critical, 5 high severity) Package registry verified. Imported from the Official MCP Registry. Trust signals: 3 highly-trusted packages.
5 files analyzed Β· 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: PROJECT_ROOT
Environment variable: SONAR_HOST_URL
Environment variable: SONAR_TOKEN
Environment variable: SONAR_PROJECT_KEY
Environment variable: ENABLE_I18N_RULES
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-mustafacagri-ai-quality-gate": {
"env": {
"SONAR_TOKEN": "your-sonar-token-here",
"PROJECT_ROOT": "your-project-root-here",
"SONAR_HOST_URL": "your-sonar-host-url-here",
"ENABLE_I18N_RULES": "your-enable-i18n-rules-here",
"SONAR_PROJECT_KEY": "your-sonar-project-key-here"
},
"args": [
"-y",
"ai-quality-gate"
],
"command": "npx"
}
}
}From the project's GitHub README.
MCP Server for AI code quality automation.
AI writes code β calls quality_fix β Server fixes what it can β Reports remaining issues to AI.
Hybrid Approach:
Important: ESLint vs Prettier
| Tool | Source | Config |
|---|---|---|
| ESLint | Project's config (if exists) or MCP's embedded | .eslintrc.* / eslint.config.* / MCP embedded |
| Prettier | Project's own | Project's prettier.config.mjs |
ESLint rules are controlled by MCP for consistent quality gates. Prettier uses project's config so formatting matches project preferences.
Phase 1 Rule Coverage:
| Plugin | Rules | Description |
|---|---|---|
| SonarJS | 201 | Security, bugs, code smells |
| Unicorn | 127 | Modern JS best practices |
| ESLint Core | 108 | JavaScript fundamentals |
| TypeScript-ESLint | 99 | TypeScript-specific rules |
| RegExp | 60 | Regex best practices |
| Import | 11 | Import/export rules |
| Promise | 10 | Async/await best practices |
| Node.js (n) | 9 | Node.js specific rules |
| Unused Imports | 2 | Auto-remove unused imports |
| Total | 627 |
node -v).Project root is auto-detected when PROJECT_ROOT is omitted: the server walks up from the MCP process working directory until it finds package.json or tsconfig.json. Set PROJECT_ROOT in env only to analyze a different tree than the inferred root.
Open Settings β Tools & MCP β Edit (user mcp.json). Add one server block; the examples below match .cursor/mcp.json.example (JSONC with comments β if your editor rejects comments, copy the JSON blocks below only).
Server name vs tool name: The key under mcpServers (e.g. "ai-quality-gate") is only the label for that connection in Cursor. The MCP tool your agent calls is always quality_fix β that name is fixed by this package and is separate from the server key and from ai-quality-gate.
npx (no global install)Always runs the published package; good for teams and CI-like setups.
{
"mcpServers": {
"ai-quality-gate": {
"command": "npx",
"args": ["-y", "ai-quality-gate"]
}
}
}
npm installAfter npm i -g ai-quality-gate, the ai-quality-gate binary is on your PATH:
{
"mcpServers": {
"ai-quality-gate": {
"command": "ai-quality-gate",
"args": []
}
}
}
Requires a running SonarQube instance, sonar-scanner available (see SonarQube Setup), and all three variables below. Phase 1 still runs first.
{
"mcpServers": {
"ai-quality-gate": {
"command": "npx",
"args": ["-y", "ai-quality-gate"],
"env": {
"SONAR_HOST_URL": "http://localhost:9000",
"SONAR_TOKEN": "your_sonar_token",
"SONAR_PROJECT_KEY": "your_project_key"
}
}
}
}
Add an "env" object when you need overrides. Merge order for config is defaults β .quality-gate.yaml / .quality-gate.json β environment variables.
| Variable | When to set |
|---|---|
QUALITY_GATE_CONFIG | Absolute path to a specific .quality-gate.yaml or .quality-gate.json (skips walking directories). |
PROJECT_ROOT | Force project root if auto-detection is wrong for your layout. |
SONAR_HOST_URL | SonarQube server URL (with Phase 2). |
SONAR_TOKEN | SonarQube token (with Phase 2). |
SONAR_PROJECT_KEY | SonarQube project key (with Phase 2). |
SONAR_SCANNER_PATH | Full path to sonar-scanner if not on PATH. |
PHASE1_TIMEOUT | Phase 1 timeout (ms), default 30000. |
PHASE2_TIMEOUT | Phase 2 timeout (ms), default 300000. |
ENABLE_I18N_RULES | true / false β stricter JSX literal checks for i18n projects. |
{
"mcpServers": {
"ai-quality-gate": {
"command": "npx",
"args": ["-y", "ai-quality-gate"]
}
}
}
Create or edit OpenCode config (typically ~/.config/opencode/opencode.json or project-level config):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ai-quality-gate": {
"type": "local",
"enabled": true,
"command": ["npx", "-y", "ai-quality-gate"]
}
}
}
Environment variables can be added under the server config if needed (see C) SonarQube (Phase 2) above).
To dogfood or contribute:
yarn build β generates dist/server.js.{
"mcpServers": {
"ai-quality-gate-dev": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/ai-quality-gate/dist/server.js"]
}
}
}
env.PROJECT_ROOT only if the repo you analyze differs from the inferred root.Settings β Rules and Commands β Add Rule:
After every code change, before telling the user "done",
AI must call the quality_fix MCP tool. This is mandatory.
AI writes code β calls quality_fix β Fixes errors β "Done β
"
--setup)The interactive wizard creates or updates .quality-gate.yaml without hand-editing: it walks you through project root, optional SonarQube (host URL + project key; token is not saved to disk β use SONAR_TOKEN in your environment), which Phase 1 tools to enable (ESLint, curly-brace / arrow AST fixers, Prettier, JSON validator), timeouts, and i18n rules. The generated file includes a fixers: block you can adjust later.
After yarn build (or install from npm), run from the target project (or any path under it):
node dist/server.js --setup
PROJECT_ROOT is inferred when unset (see MCP configuration). Use the same entrypoint as the MCP server (node dist/server.js or npx ai-quality-gate); only the --setup flag switches to wizard mode. Answer prompts in the terminal; on success you get a ready-to-use config next to your project root.
Other CLI modes: --check (read-only Phase 1), --fix (default behavior when using CLI quality run), --phase1-only, --phase2-only β see docs/DEVELOPMENT.md.
Configure Sonar env in MCP as in C) SonarQube (Phase 2) above, or copy from .cursor/mcp.json.example. You need sonar-scanner on your machine for analysis (see below).
# Start SonarQube
docker run -d --name sonarqube -p 9000:9000 sonarqube:community
# First login: admin/admin β change password
# http://localhost:9000
# docker-compose.yml
version: '3'
services:
sonarqube:
image: sonarqube:community
ports:
- '9000:9000'
volumes:
- sonarqube_data:/opt/sonarqube/data
- sonarqube_logs:/opt/sonarqube/logs
- sonarqube_extensions:/opt/sonarqube/extensions
volumes:
sonarqube_data:
sonarqube_logs:
sonarqube_extensions:
docker-compose up -d
SONAR_TOKEN| Platform | Method | Command |
|---|---|---|
| Windows | npm (global) | npm install -g sonarqube-scanner |
| Windows | Chocolatey | choco install sonar-scanner |
| macOS | npm (global) | npm install -g sonarqube-scanner |
| macOS | Homebrew | brew install sonar-scanner |
| Linux | npm (global) | npm install -g sonarqube-scanner |
| Docker | Container | docker run sonarsource/sonar-scanner-cli |
For custom path: SONAR_SCANNER_PATH env var
Optional files (discovered by walking up from the inferred project root β same algorithm as package.json / tsconfig.json β or from PROJECT_ROOT when set): .quality-gate.yaml (preferred) or .quality-gate.json. Same fields as environment variables (camelCase); you may nest Sonar settings under sonar: { hostUrl, token, projectKey, scannerPath }.
Merge order: defaults β config file β environment variables (ENV wins on conflicts).
Set QUALITY_GATE_CONFIG to an explicit path to skip discovery.
customRules)Optional line-based regex checks on lintable files (Phase 1). Each match is reported as an issue with rule set to custom:<id> (and included in quality_fix remaining). Example:
customRules:
- id: no-console
message: 'Console.log is not allowed'
pattern: 'console\\.log\\('
severity: error
- id: no-debugger
message: 'Debugger statement found'
pattern: 'debugger'
severity: warning
Patterns use JavaScript RegExp source (escape backslashes as in YAML strings). Invalid patterns are skipped at runtime with a log line.
When fixers.jsonValidator is enabled and you pass JSON paths that match locale patterns (for example locales/en.json / locales/tr.json), the tool compares keys across those files.
issues and fail Phase 1 / quality_fix until fixed.i18nIssues in the validator result and printed as warnings on stderr during Phase 1. They do not set passed: false and do not block the gate.Treat i18nIssues as advisory unless you add your own CI check on top.
All variables are optional unless you use Phase 2, which requires SONAR_HOST_URL, SONAR_TOKEN, and SONAR_PROJECT_KEY together.
| Variable | Description | Example |
|---|---|---|
QUALITY_GATE_CONFIG | Absolute path to a .quality-gate.yaml or .quality-gate.json file. Skips walking parent directories for config discovery. | /app/ci/quality-gate.yaml |
PROJECT_ROOT | Override detected project root. Default: walk up from the process cwd until package.json or tsconfig.json is found. | /Users/me/my-repo |
SONAR_HOST_URL | SonarQube server base URL (Phase 2). | http://localhost:9000 |
SONAR_TOKEN | SonarQube authentication token (Phase 2). Prefer env / secret store; avoid committing. | sqa_xxx... |
SONAR_PROJECT_KEY | SonarQube project key (Phase 2). | my-project |
SONAR_SCANNER_PATH | Full path to the sonar-scanner executable if it is not on PATH. | /opt/sonar-scanner/bin/sonar-scanner |
PHASE1_TIMEOUT | Phase 1 subprocess timeout in milliseconds. | 30000 (default) |
PHASE2_TIMEOUT | Phase 2 (Sonar) timeout in milliseconds. | 300000 (default) |
ENABLE_I18N_RULES | Set to true to enable ESLint rules that flag raw string literals in JSX (for i18n-heavy apps). | false (default) |
Phase 1 automatically fixes these issues:
// var β const/let
var x = 1 β const x = 1
// forEach β for...of (unicorn/no-array-for-each)
arr.forEach(x => f(x)) β for (const x of arr) f(x)
// Nested ternary β extracted (unicorn/no-nested-ternary)
a ? b : c ? d : e β const temp = c ? d : e; a ? b : temp
// Unused imports removed
import { unused } from 'x' β (removed)
// Type imports (consistent-type-imports)
import { Type } from 'x' β import type { Type } from 'x'
// Optional chain (prefer-optional-chain)
a && a.b && a.b.c β a?.b?.c
// Regex optimization (regexp/*)
/[0-9]/ β /\d/
// Remove unnecessary curly braces (single-line if)
if (x) { return true } β if (x) return true
After ESLint fixes, Prettier runs to ensure consistent formatting:
// ESLint removes braces but leaves awkward format:
if (x) return true
// Prettier fixes to single line:
if (x) return true
Note: Prettier uses project's config, not MCP's.
Everything else: Reported to AI, AI fixes it.
quality_fix// Input
{
files: string[] // File paths to check
}
// Output
{
phase: "local" | "server" | "complete",
success: boolean,
message: string,
fixed: {
eslint: number, // ESLint auto-fixes
curlyBraces: number, // AST: single-statement if braces
singleLineArrow: number, // AST: arrow body style
prettier: number, // Prettier formatting
json: number // JSON validation passes counted
},
remaining: Issue[],
timing: {
phase1: string,
phase2?: string,
total: string
}
}
ENABLE_I18N_RULESFor projects with internationalization (i18n), enable literal string detection:
{
"env": {
"ENABLE_I18N_RULES": "true"
}
}
When enabled:
// β οΈ Warning
<h1>Hello World</h1>
// β
OK
<h1>{t('hello')}</h1>
quality_fix does not appearnode -v and npx --version.mcp.json (or use the MCP refresh control)."command": "ai-quality-gate", run npm i -g ai-quality-gate once so the binary exists."npx not found" error:
# Node.js must be in PATH
# Check in PowerShell:
where.exe npx
Permission denied:
# Run PowerShell as Administrator
"Permission denied" error:
# Fix npm global directory
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.zshrc
source ~/.zshrc
"sonar-scanner not found" error:
# Install via Homebrew
brew install sonar-scanner
# Or via npm
npm install -g sonarqube-scanner
"Insufficient privileges" error:
"Project not found" error:
git clone https://github.com/mustafacagri/ai-quality-gate.git
cd ai-quality-gate
yarn install
yarn build
Use Local development (this repository) for MCP pointing at dist/server.js.
.cursor/mcp.json.example are enough to run the published package.MIT Β© Mustafa ΓaΔrΔ± GΓΌven
v0.0.1 β Initial release! MCP quality_fix, Phase 1/2 pipeline, CLI, config files, custom rules (see CHANGELOG)
Be the first to review this server!
by Modelcontextprotocol Β· Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.
by Microsoft Β· Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace Β· Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm β conversationally
by mcp-marketplace Β· Finance
Free stock data and market news for any MCP-compatible AI assistant.