Short answer
The cleanest path is the Aescut installer package. It writes a generic agent bundle containing an MCP config snippet plus the guard prompt, and it can optionally patch Claude Desktop directly. It does not claim to auto-modify every AI client on earth.
If you prefer full control, you can also add the Aescut MCP manually by pointing a client at @aeptus/aescut --skip-install with the right launcher and CMS URL.
Recommended path
- 01
Run the installer
Use npx -y @aeptus/aescut, or an equivalent launcher such as pnpm dlx, yarn dlx, bunx, or volta run npx.
- 02
Merge the generated mcp.json into your client
The installer writes a generic bundle under ~/.aescut/install unless you tell it to target a specific config path.
- 03
Add the guard prompt if you want policy guidance
The MCP exposes the data; the guard prompt is what nudges an agent to consult the registry before installing or recommending tools.
One-command install
npx -y @aeptus/aescut
Equivalent launchers are documented for pnpm dlx, yarn dlx, bunx, volta run npx, and Homebrew. The installer’s default output is intentionally host-agnostic, because different agents store MCP config in different places.
What the installer writes
The generic bundle includes:
mcp.jsonwith the Aescut MCP server configaescut-guard.mdfor system-prompt style hostsaescut-guard.skill.mdfor skill-style hosts- A README explaining how to merge the files into the target client
{
"mcpServers": {
"aescut": {
"command": "npx",
"args": ["-y", "@aeptus/aescut", "--skip-install"],
"env": {
"SAFE_SKILLS_CMS_URL": "https://cms.aescut.dev"
}
}
}
}When to configure it manually
Manual setup is still the better option when you want the configuration checked into a repository, wrapped in MDM, or generated by another onboarding tool. Aescut’s own package docs explicitly support that path and document the launcher mapping.
Sources and further reading
Related questions
Aescut MCP
What tools does the Aescut MCP server provide?
Aescut’s current MCP tool surface, what check_risk returns, and how to use the data in practice.
Installation
How do I install an MCP server on Claude Code?
Current Claude Code MCP setup, config locations, CLI shortcuts, and common verification steps.
Installation
How do I install an MCP server on VS Code with GitHub Copilot?
Current VS Code MCP setup, workspace vs user configs, trust prompts, input variables, and sandboxing.