Skip to main content
Glama

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 over path (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.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    MCP 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.
    4
    32 npm
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server that provides tools for architecture analysis, risk diagnosis, quality metrics, and regression guarding to support AI-driven code review and incremental refactoring workflows.
    5
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables 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.
    1
    1
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Provides 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.
    -