ARGUS
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ARGUSRun a full diagnose and show me the top security risks and dead code"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ARGUS
Autonomous Repository Guardian and Unified Scanner
"A hundred eyes on your codebase."
An MCP server that gives any AI agent complete situational awareness of a codebase — security, quality, architecture, type safety, git history, and dead code — with zero infrastructure.
No server. No database. No CI plugin. No API keys. No data leaves your machine.
npx @cerionautomation/argusWhy this exists
Ask an AI assistant "is my codebase secure?" and it guesses, because it can only see the file you pasted. It cannot see the other 400 files, run your tests, or check your git history.
ARGUS fixes that. Connect it as an MCP server and the agent gets 24 tools that read the whole repository, score it across 10 dimensions, and return structured JSON it can act on.
Related MCP server: arch-viewer
ARGUS vs SonarQube
ARGUS | SonarQube | |
Setup |
| Server + PostgreSQL + CI plugin + admin account |
Infrastructure | None | Dedicated host, DB, JVM |
Cost | Free, MIT | £15k–£150k/year enterprise |
Consumer | AI agents (structured JSON) | Humans (HTML dashboard) |
Scan speed | 68ms security scan on 99k lines | Minutes; full analysis 10–30 min |
Autonomous fixing | Yes — self-healing loop | No |
False-positive transparency |
| Manual triage in the UI |
Git churn hotspots | Built in | Requires plugin/commercial edition |
Dead export detection | Built in | Limited |
RAG code retrieval | Built in (local BM25) | Not available |
Privacy | 100% local | Server-side, often cloud |
Offline | Works | Needs the server |
Where SonarQube still wins: 30+ language support (ARGUS focuses on TS/JS/Python/Go), decades of rule tuning, compliance certifications, and multi-team dashboards with historical trend reporting. ARGUS is not trying to replace an enterprise quality-gate deployment — it replaces the feedback loop between an AI agent and your code.
Accuracy: measured, not claimed
Most scanners drown you in false positives. ARGUS validates every finding against its own evidence and rejects the ones that don't hold up.
Real result on a 99,681-line Next.js production codebase:
Detector generation | Findings | True positives | Precision |
Naive regex (v0) | 7 | 3 | 43% |
Multi-gate + semantic critique (v1) | 3 | 3 | 100% |
The four eliminated false positives were:
"select your dates"in FAQ prose flagged as SQL injectionselect=accessTokenin a REST URL flagged as SQL injectionA
console.logflagged as a hardcoded credential (correctly reclassified as secret-logging)
Every rejection is inspectable via critique_report.
How the accuracy works
1. Multi-gate detection. A SQL injection finding requires three independent gates:
A well-formed SQL statement (
SELECT … FROM, not the word "select")A query executor within 2 lines (
.query(,$queryRaw,knex.)Not a URL or REST query string
2. Entropy checks on secrets. A credential must have a known key prefix (sk-, ghp_, AKIA, AIza) or genuine entropy — mixed case, digits, 20+ chars. Interpolated values, env references, and type declarations are excluded.
3. Semantic critique. Each surviving finding is re-examined against its own captured evidence. If the evidence contradicts the claim, it is rejected with a stated reason.
4. Honest confidence. The confidence number is the share of findings marked confirmed rather than possible — not a cosmetic 100%.
Tools (24)
Diagnosis
full_diagnose— everything at once: score, findings, hotspots, dead code, typesquantum_score— 10-dimension weighted grade (S/A/B/C/D/F), reproducibleswarm_intel— all scanners in parallel + critique loopcheat_sheet— ~150 token repo orientation for an agent
Security
security_scan— secrets, SQLi, XSS, path traversal, weak crypto, CORS, open redirect, prototype pollution, TLSstandards_check— OWASP Top 10, SOLID, 12-Factor, Clean Architecturedependency_risk— risky packages, wildcard versions, missing lockfile
Quality
code_quality— empty catch, console.log,@ts-ignore,any, oversized filestype_coverage— TypeScript strictness scorememory_scan— listener leaks, missinguseEffectcleanup, timer leakstest_coverage— ratio, assertion-free tests, skipped testsdead_exports— exported symbols nothing imports
Git intelligence
git_hotspots— files with highest 90-day churn (churn correlates with bugs)
RAG grounding
rag_retrieve— BM25 code retrieval, local, zero API callsground_finding— full enclosing function + every caller of a symbolcritique_report— every rejected false positive with its reason
Action
auto_diagnose— self-healing loop: diagnose → fix → re-score → iterateverify_all— build, lint, test with captured outputrisk_assess— 4-dimension risk → Full Autonomy / Mixed / Structured modegap_analysis— missing CI, linter, README, tsconfigsearch— ripgrep-powered, 32× faster than grepthink— structured chain-of-thought scaffoldmemory_set/memory_get— cross-session persistence
3 prompts: deep_audit, production_gate, debug_root_cause
3 resources: argus://{path}/health, /summary, /hotspots
Install
Claude Code
claude mcp add argus -- npx -y @cerionautomation/argusClaude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"argus": {
"command": "npx",
"args": ["-y", "@cerionautomation/argus"]
}
}
}From source
git clone https://github.com/CerisonAutomation/argus-mcp
cd argus-mcp && npm install && npm run buildEngineering
Zero runtime dependencies beyond the MCP SDK and Zod
Circuit breakers on every scanner — an agent never hangs
Memory-safe walker — 30MB total / 500KB per file caps, depth-limited
Sanitised exec —
execFileSyncwith argument arrays, nevershell: trueStrict TypeScript —
exactOptionalPropertyTypes,noUncheckedIndexedAccessMCP Spec 2025-06-18 — tool annotations, structured content, output schemas
Benchmarks
Measured on a 99,681-line / 631-file Next.js + TypeScript production codebase:
Tool | Time |
| 146ms |
| 68ms |
| 189ms |
| 24ms |
| 111ms |
| 286ms |
Licence
MIT © Cerison Brown
Built by Cerison Brown — SDET | QA Automation Engineer | AI Workflow & Systems Automation Engineer
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to search code by meaning, explore codebase structure, store and query knowledge with temporal facts, and read source code through a set of MCP tools.4537MIT
- AlicenseNot gradedqualityCmaintenanceProvides AI-powered architecture analysis and visualization of codebases, exposing 17 MCP tools for querying components, dependencies, and generating interactive diagrams.MIT
- AlicenseNot gradedqualityAmaintenanceProvides code intelligence for AI coding agents by indexing repositories into a hybrid knowledge graph, enabling agents to query dependencies, impact, and context through 28 MCP tools.3Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables AI coding agents to perform surgical code analysis, semantic memory, and quality enforcement via 18 specialized MCP tools, with a real-time analytics dashboard.65MIT
Related MCP Connectors
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Zero-install security baseline for AI coding agents — OWASP/CWE-cited rules over MCP.
Package intelligence MCP for AI agents — 22 tools, 19 ecosystems, AGPL SDK, free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CerisonAutomation/argus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server