Wraps the evolveguard CLI as a single generic MCP tool for agent-skill file safety checks.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
What it does β’ Quickstart β’ CLI reference β’ Agent-native usage β’ MCP server β’ How it compares β’ FAQ
Catch behavioral drift when a Claude Agent Skill or a Claude Code MEMORY.md file edits itself, before the edit ships.

[!NOTE] Both packages are live and named consistently:
evolveguard-clion PyPI andevolveguard-clion npm (renamed 2026-07-19 from the old plainevolveguard, which is now deprecated on both registries).npm install -g evolveguard-cliandpip install evolveguard-cliboth work today; the demo GIFs below were recorded against the published packages, not a local build.
That's real output from this repo's own fixtures/labeled-non-breaking-edits/case-03-add-write-capability/
test case, wired to filesystem: read-only becoming read-write in the skill's frontmatter.
Reproduce it yourself: evolveguard record the before/SKILL.md in that folder against its
fixtures.json, then evolveguard check the after/SKILL.md.

Static analysis, not a live agent run. record parses a skill file's YAML
frontmatter (declared tools, network, filesystem, scope, and any bundled
hooks), scans the skill's body text and hook scripts for evidence of network calls
or filesystem writes, and combines both into a capability surface. check re-parses
the edited file with the same logic and diffs the result. Neither command runs
eval, shells out to a subprocess, or executes a skill's hook scripts, in either the
TypeScript or the Python distribution.
Two-level diffing catches drift a single fixture can miss. Each fixture's
expectedToolCalls filters the recorded capability surface down to what that fixture
cares about, but check also diffs the skill's whole capability surface separately.
A new capability that no fixture's expectedToolCalls happens to cover still shows
up as a surfaceChanges entry instead of passing silently. Confirmed against this
repo's own case-04-scope-widened fixture, where a fs.write scope widens from
./workspace/** to ./**.

0% false positives on a labeled corpus, reproducibly. npx vitest run src/evolveguard/benchmark.test.ts runs the record/check/diff pipeline against
fixtures/labeled-non-breaking-edits/: 2 cases hand-labeled non-breaking (a wording
tweak, a typo fix) and 3 labeled breaking (a new write capability, a widened scope, a
hook script gaining a network call). As of this commit, both non-breaking cases stay
clean: 0 of 2 flagged as drift. The corpus is small and grows as more real skill edits
get reported.
A path-traversal guard on hook scripts. A skill's declared hook paths are resolved
and validated against that skill's own directory before being read, including a
symlink-escape re-check that runs after the lexical containment check passes
(src/evolveguard/paths.ts and python/src/evolveguard/paths.py).
Every subcommand supports --json. record, check, and report all take a
--json flag and return a stable schemaVersion-tagged structure, so a coding agent
can call any of them as a subprocess and parse the result directly.
Two independently maintained, format-compatible distributions. The npm package
(TypeScript, repo root) and the PyPI package (Python, python/) parse the same
frontmatter schema and produce byte-compatible baseline and report JSON. A baseline
recorded with one CLI can be checked with the other; see
docs/concepts.md
for the file-format details.
evolveguard detects changes in what a skill is declared or shown to be capable of. It does not run a live LLM agent or replay a real conversation transcript, so it cannot tell you whether an agent would actually behave differently on a given prompt. That is an intentional scope limit, and also why it needs nothing hosted and runs fully offline in a pre-commit hook or CI job.
A fixtures file is a JSON array of labeled prompts and the tool-call shapes each one is expected to touch:
expectedToolCalls is optional; omit it and the fixture is treated as exercising the
skill's entire capability surface. scopeMatches (a glob) narrows a tool to a specific
filesystem scope, e.g. { "tool": "fs.write", "scopeMatches": "./workspace/**" }.
Generated from the actual --help output of the installed CLI (verified against both
the npm and PyPI builds; flags and defaults are identical across distributions).
evolveguard --helpevolveguard record --helpevolveguard check --helpNo reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/evolveguard)<a href="https://allmcps.com/mcp/evolveguard"><img src="https://allmcps.com/api/badge/evolveguard?style=directory" alt="Evolveguard on AllMCPs" /></a>