ariseguard-mcp
Click on "Deploy 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., "@ariseguard-mcpscan the project for silently wrong bugs"
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.
ariseguard-mcp
An MCP server that runs AriseGuard on a project and returns the valid but silently wrong bugs it finds — code that passes every test and still costs money. Works with any MCP client: Codex, Cursor, Claude, and others.
Tool
arise_scan({ path? })— runs AriseGuard overpath(default: current directory) and returns each FAIL (blocking) and WARN (advisory) with its fix. A scan of zero files is reported as not a pass, not "clean".
Related MCP server: arch-optimize
Add it to Codex
codex mcp add ariseguard -- npx -y ariseguard-mcp(Or run it straight from source, no npm needed: npx -y github:hossamhamdy99/ariseguard-mcp.)
Add it to Cursor
In ~/.cursor/mcp.json (or a project .cursor/mcp.json):
{
"mcpServers": {
"ariseguard": {
"command": "npx",
"args": ["-y", "ariseguard-mcp"]
}
}
}The CLI on its own
No MCP needed to use the tool — in any project: npx ariseguard. Zero dependencies, source-available.
This server cannot be deployed
Maintenance
Related MCP Connectors
295k+ bug-fix patterns with MCP Hub proxy, PII filtering, and code search
Scan any public GitHub MCP-server repo for security issues. 37 MCP-specific L1 rules, 8 languages.
MCP server for static security analysis of Android source code
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server that detects semantic (non-textual) merge conflicts between Git branches using AST-level analysis. Catches incompatible changes that Git merges cleanly — signature changes, removed exports, parameter changes, interface breaks, and cross-file dependency conflicts.432 npmMIT
- AlicenseNot gradedqualityBmaintenanceMCP server that provides tools for architecture analysis, risk diagnosis, quality metrics, and regression guarding to support AI-driven code review and incremental refactoring workflows.5MIT
- AlicenseAqualityBmaintenanceEnables bug localization by analyzing a repo and bug report with an ant-swarm LLM, returning a HOT/WARM/COLD heatmap and JSON audit trail via MCP.11MIT
- FlicenseNot gradedqualityBmaintenanceProvides a set of MCP tools to clone and analyze arbitrary MCP server repositories, run static and dynamic security probes in isolated Docker containers, and produce vulnerability verdicts with a human-in-the-loop approval step before filing public reports.-