demo modeAI calls are disabled on this public site to keep it free. The plans, findings, and audits shown are mock examples — the product is real, this surface is just a static walkthrough.DM me for a live pilot

install seniorify

One install. The plugin ships a skill that tells your AI agent when to run the audit loop, and registers the Seniorify MCP server. Works with Claude Code, Cursor, and any MCP-capable client.

Claude Code

recommended
claude plugins marketplace add mbrian23/seniorify-dev
claude plugins install seniorify

Installs the seniorify skill + MCP server. Claude will run the audit loop on every non-trivial coding task.

Cursor

# Seniorify rule path
.cursor/rules/seniorify.mdc

# Cursor → Settings → MCP → Add server
type: http
url:  https://seniorify.dev/api/mcp

Drop the rule into your project, then add the MCP HTTP endpoint in Cursor's settings.

Generic MCP client

{
  "mcpServers": {
    "seniorify": {
      "type": "http",
      "url": "https://seniorify.dev/api/mcp"
    }
  }
}

Any MCP-capable client. Drop into .mcp.jsonor your client's equivalent.

tools exposed

submit_planAudit a plan; returns findings against team conventions
defendRecord a one-line defense of a finding
update_findingMark a finding addressed / defended / overridden
sign_planFreeze the plan; generate the manager-readable summary
get_auditRead back a plan with all findings and decisions

what installs

  • skill— the senior's prompt: how and when to call Seniorify.
  • command /audit for manual runs.
  • mcp — the audit-trail server at seniorify.dev/api/mcp.
github.com/mbrian23/seniorify-dev