Add mcp-security-baseline skill#2212
Open
Swethakumar1 wants to merge 1 commit into
Open
Conversation
Contributor
🔒 PR Risk Scan ResultsScanned 2 changed file(s).
|
Contributor
🔍 Vally Lint Results✅ All checks passed
Summary
Full linter output |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Agent Skill (mcp-security-baseline) to help reviewers assess MCP server/client source code against a defined security baseline and produce an evidence-backed compliance report, and updates the generated skills index to include it.
Changes:
- Added
mcp-security-baselineskill with a structured 6-step review process, baseline controls (MCP-01..05), RCE vector checks, and OWASP MCP Top 10 mapping. - Updated
docs/README.skills.mdto include the new skill entry.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| skills/mcp-security-baseline/SKILL.md | New skill definition and detailed review checklist/reporting format for MCP implementation security reviews. |
| docs/README.skills.md | Adds the new skill to the skills documentation index. |
An Agent Skill that reviews MCP server and client source code against a security baseline (5 controls, 7 RCE vectors, OWASP MCP Top 10) and produces a compliance report with file/line evidence. Complements mcp-security-audit, which checks .mcp.json configuration. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
948e63d to
e7ab12c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add skill:
mcp-security-baselineAn Agent Skill that reviews MCP server and client source code against a security
baseline and produces a compliance report with file/line evidence.
Checks: 5 baseline controls (authentication & identity isolation, sessions, rate
limiting, input-schema validation, official-SDK usage), 7 RCE vectors (command injection,
dynamic code eval, unsafe deserialization, path traversal, SSTI, dependency hijacking,
SSRF), and the OWASP MCP Top 10. Six-step process; uses
NEEDS INVESTIGATIONwhen sourcealone can't decide.
Distinct from the existing
mcp-security-auditskill, which audits.mcp.jsonconfiguration — this reviews server/client source code.Validation:
npm run skill:validate✅ andnpm run build✅ (adds one row todocs/README.skills.md). Single self-containedSKILL.md(matches existing skills likeagent-owasp-compliance). Blind-tested against intentionally vulnerable MCP repos acrossmultiple models (100% recall on planted vulnerabilities, zero false negatives).