Wraps the ShimGuard CLI as a single generic MCP tool for agent-shim provenance 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.
Verify that a GitHub issue closed as "fixed" actually has a merged fix, before you trust the tracker.

That single command against the real sybil-solutions/codex-shim repo (1,000+
stars) turns up 6 MISMATCH results: 6 security issues, each closed with a
"Fixed in PR #52" comment, where PR #52 was never actually merged. The
vulnerable code is still in main today. Nobody reading the closed issues
would know.
Reading an issue tracker, you trust two signals: the issue's state (open
or closed) and the maintainer's closing comment ("fixed in #N"). Neither
signal is verified against reality by GitHub itself. A maintainer can close
an issue citing a PR that never merged, an automated bot can close on a
"fixes #N" keyword in a PR description before that PR lands, or a fix can
get reverted after the issue was already closed. Any of these leaves a
tracker saying "fixed" about a bug that is still live.
ShimGuard checks the one thing a human skimming issues does not: does the
PR the tracker cites as the fix actually show merged: true? It is a small,
mechanical, unambiguous check, not a heuristic or a guess.
ShimGuard ships two independent, equally first-class packages -- pick whichever fits your toolchain, or install both. Neither is deprecated in favor of the other; both implement the same "closed issue cites Fixed in PR #N, is #N actually merged" check against the same GitHub REST API.
The npm CLI requires Node.js 18 or later (uses the built-in fetch API).
The Python package's CLI entry point is also shimguard (e.g. shimguard verify sybil-solutions/codex-shim --issues 45,46); see
python/README.md and
docs/getting-started.md for the Python-specific
walkthrough, and CHANGELOG.md for each distribution's
version history.
Exit code is 1 when any MISMATCH is found (useful for gating CI), 0 when
every checked issue's claimed fix actually merged, 2 on a usage or network
error.
ShimGuard is not just a gotcha finder: run it against a mix of issues and it
correctly reports MATCH, UNVERIFIED, and MISMATCH side by side, exiting 0
whenever nothing is provably broken -- exactly the signal a CI gate needs.

For an even stronger check, point ShimGuard at the specific file and pattern an issue named as the vulnerable code:
If the PR is merged but the cited pattern is still present in the file at
HEAD, ShimGuard still reports MISMATCH: a merged PR does not guarantee
the specific vulnerable line was actually removed.
[!WARNING]
patternis compiled as a JavaScriptRegExp, andpathis validated to stay within the target repo (no..traversal to a different repo or API endpoint). Only point--patternsat files you wrote or reviewed yourself. See SECURITY.md.
--format json output is stable and designed for scripts and AI agents to
parse directly:

ShimGuard ships a Model Context Protocol server, so an MCP-compatible agent (Claude Desktop, Claude Code, Cursor, or any other MCP client) can call it as a tool instead of shelling out to the CLI and parsing text. It's part of the Python distribution:
Register it with an MCP client such as Claude Desktop:
It exposes a single tool, run, that takes the exact argv you'd pass to
the shimguard CLI and returns a structured result ({returncode, stdout, stderr, json?} on success, {error: ...} if the command failed, timed
out, or exited non-zero). Example call:
which returns the same --format json report shown above, as a parsed
json field alongside the raw stdout. Full details are in the
Python package README.
ShimGuard's verification logic is also importable directly:
TrackerVerifier takes any GitHubClient and an optional PatternMatcher
(see src/types.ts, src/pattern-matcher.ts), both are interfaces, so a
future local-config scanner or a different code host can plug in without
changing the verifier itself.
The Python package exposes the same shape:
No existing open-source tool checks "this issue tracker says fixed-in-PR-#N, is #N actually merged." That claim is verified by searching for issue-fix-verification tools, patch-verification tools, and security-advisory-fix tools before writing this. The closest adjacent tools solve different problems:
No 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/shimguard)<a href="https://allmcps.com/mcp/shimguard"><img src="https://allmcps.com/api/badge/shimguard?style=directory" alt="Shimguard on AllMCPs" /></a>