Xcs221 Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Xcs221 Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Template MCP server that helps AI agents answer common XCS221 course logistics questions from static in-repo data (no auth, no external APIs).
Out of the box, it is designed for questions such as:
The server exposes both direct tools and a natural-language router tool.
@modelcontextprotocol/sdkzodvitestTypeScript is a strong fit because the official MCP SDK for Node is mature and gives a clean typed API for resources + tools.
.
├── src
│ ├── data
│ │ └── courseData.ts # Static schedule/repo data (edit this each term)
│ ├── tools
│ │ └── courseTools.ts # Pure logic for deadlines, pacing, and routing
│ ├── server.ts # MCP server + tool/resource registration
│ └── index.ts # Stdio entrypoint
├── tests
│ └── courseTools.test.ts # Unit tests for tool logic
├── package.json
├── tsconfig.json
└── vitest.config.tsxcs221://course-dataFull static JSON data for term schedule, assignments, and repositories.
get_assignment_deadlinesreferenceDate? (YYYY-MM-DD)includePast? (boolean)get_today_progressreferenceDate? (YYYY-MM-DD)get_course_repositoriesanswer_course_questionquestion (string)referenceDate? (YYYY-MM-DD)npm installnpm testnpm run devor build + run:
npm run build
npm startUse stdio in your MCP client:
{
"mcpServers": {
"xcs221-course-guide": {
"command": "node",
"args": ["/absolute/path/to/repo/dist/index.js"]
}
}
}If running TypeScript directly in development:
{
"mcpServers": {
"xcs221-course-guide-dev": {
"command": "npx",
"args": ["tsx", "/absolute/path/to/repo/src/index.ts"]
}
}
}Edit src/data/courseData.ts:
term, timezone, and courseStartDatedueDate and repo linkspacingMilestones date ranges and topicsrepositories list to your real setup/assignment reposNo auth changes are required unless you intentionally add external systems.
Current tests cover:
Add tests in tests/ as you extend new tools or data fields.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.