Mcp System Summary — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp System Summary (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.
🔗 Live Server: https://smithery.ai/server/AliceTears/mcp-system-summary
An MCP (Model Context Protocol) server that provides structured instructions to Cursor on how to generate comprehensive system summaries for Node.js/TypeScript codebases.
Purpose: This MCP does NOT generate summaries directly. Instead, it provides detailed JSON instructions that guide Cursor through the process of:
Built with Smithery SDK
This MCP server exposes three components that help Cursor understand how to generate system summaries:
generate-system-summary-instructions - Returns complete JSON instructionssystem-summary-template - Provides reusable prompt templatessystem-summary-instructions - Read-only reference documentationTo use this MCP server in Cursor, add it to your MCP configuration:
~/.cursor/mcp.json%APPDATA%\Cursor\mcp.jsonmcp.json:{
"mcpServers": {
"mcp-system-summary": {
"type": "http",
"url": "https://server.smithery.ai/AliceTears/mcp-system-summary",
"headers": {}
}
}
}You can configure the MCP server behavior by adding parameters to the URL or through Cursor's MCP settings:
outputDirectory: Directory path for saving codebase_summary.md (defaults to workspace root)includeGitHistory: Whether to analyze git history (default: true)debug: Enable debug logging (default: false)Example with configuration:
{
"mcpServers": {
"mcp-system-summary": {
"type": "http",
"url": "https://server.smithery.ai/AliceTears/mcp-system-summary?outputDirectory=./docs&includeGitHistory=true",
"headers": {}
}
}
} npm install npm run devgenerate-system-summary-instructions toolsystem-summary-template promptinstructions://system-summary resourceThe server supports the following configuration options:
outputDirectory (optional): Directory path for saving codebase_summary.md. Defaults to workspace root.includeGitHistory (optional, default: true): Whether to analyze git history for recent changes.debug (optional, default: false): Enable debug logging.generate-system-summary-instructionsReturns complete JSON instructions for generating a system summary. Cursor should use these instructions to inspect the codebase and generate a comprehensive codebase_summary.md file.
Input Parameters:
outputPath (optional): Override the configured output directoryOutput: JSON object containing:
system-summary-templateProvides a reusable prompt template for generating system summaries with optional focus areas.
Input Parameters:
codebasePath (optional): Path to the codebase rootfocusArea (optional): Focus area (e.g., 'backend', 'frontend', 'api')Output: Pre-formatted user message with instruction template and optional focus instructions.
system-summary-instructionsRead-only reference documentation for the system summary instruction structure.
URI: instructions://system-summary
Content: Complete instruction JSON as reference documentation for understanding the format and requirements.
The instructions define the following summary fields:
The generated summary is saved as codebase_summary.md in Markdown format with:
Your code is organized as:
src/index.ts - MCP server with tools, resources, and promptssmithery.yaml - Runtime specificationEdit src/index.ts to customize the instruction structure or add new components.
npm run buildCreates bundled server in .smithery/
Ready to deploy? Push your code to GitHub and deploy to Smithery:
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO.git
git push -u origin maincodebase_summary.md with all required fields in the specified format.mcp-system-summary/
├── src/
│ └── index.ts # Main MCP server implementation
├── package.json # Dependencies and scripts
├── smithery.yaml # Runtime configuration (TypeScript)
├── README.md # This file
├── AGENTS.md # Smithery SDK guide
├── CODEBASE_SUMMARY.md # Codebase documentation
└── .gitignore # Git ignore rules@modelcontextprotocol/sdk@^1.25.1: Core MCP SDK@smithery/sdk@^3.0.1: Smithery SDK for deploymentzod@^4: Schema validation for configuration@smithery/cli@^2.2.1: Development CLI (dev dependency)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.