Mercury Spec Ops — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mercury Spec Ops (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.
 [](https://modelcontextprotocol.io) [](https://modelcontextprotocol.io)

The first MCP server to expose dynamic, AI-invocable tools for prompt generation and template assembly.
Transform how AI assistants interact with specialized content. Instead of static prompts and resources, Mercury Spec Ops provides 6 programmable tools that enable AI to dynamically generate technology-specific prompts and comprehensive templates on-demand. Built on a sophisticated modular architecture with 31 technology stacks, 10 analysis dimensions, and 34 template sections—all accessible through simple tool calls.
This MCP server provides a modular, extensible architecture with:
git clone https://github.com/n0zer0d4y/mercury-spec-ops.git
cd mercury-spec-ops
npm install
npm run buildnpm run mcpnpm install -g @n0zer0d4y/mercury-spec-opsOr use directly with npx (no installation required):
npx @n0zer0d4y/mercury-spec-opsConfigure the server in your MCP client (Claude Desktop, Cursor, etc.):
#### Using npx (Recommended - No Installation)
For Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"mercury-spec-ops": {
"command": "npx",
"args": ["-y", "@n0zer0d4y/mercury-spec-ops"]
}
}
}For Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"mercury-spec-ops": {
"timeout": 60,
"type": "stdio",
"command": "npx",
"args": ["-y", "@n0zer0d4y/mercury-spec-ops"]
}
}
}#### Using Local Installation
For Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"mercury-spec-ops": {
"command": "node",
"args": ["/path/to/mercury-spec-ops/dist/src/server.js"]
}
}
}For Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"mercury-spec-ops": {
"timeout": 60,
"type": "stdio",
"command": "node",
"args": ["/path/to/mercury-spec-ops/dist/src/server.js"]
}
}
}Windows Local Path Example (Cursor):
{
"mcpServers": {
"mercury-spec-ops": {
"timeout": 60,
"type": "stdio",
"command": "node",
"args": [
"C:\\Development\\Projects\\MCP-Servers\\mercury-spec-ops\\dist\\src\\server.js"
]
}
}
}Important Notes:
npm run build firstcodebase-analysis-prompt with technology_stack: "node.js,typescript" and analysis_focus: "security,performance"resource://codebase-analysis-templatebug-analysis-prompt with technology_stack: "react", severity_level: "critical", and bug_type: "security"prd-prompt with project details and technology_stack: "react"prd-promptproject_name (required): Name of the software projectproject_description (required): Brief description of the projecttarget_audience (optional): Target audience for the product (enum values)project_type (optional): Type of project (enum values)key_features (optional): Key features to include in the PRDtechnology_stack (optional): Technology stack to be used (enum values)custom_instructions (optional): Custom instructions for PRD generationcodebase-analysis-promptrepository_path (required): Path to the repository to analyzetechnology_stack (required): Technology stack used in the codebase (enum values)analysis_focus (optional): Focus areas for analysis (enum values)custom_instructions (optional): Custom instructions for codebase analysisbug-analysis-promptrepository_path (required): Path to the repository with bugs to analyzebug_description (required): Description of the bug or issue to analyzeaffected_components (optional): Components affected by the bugseverity_level (optional): Severity level of the bug (enum values)bug_type (optional): Type of bug (enum values)technology_stack (optional): Technology stack used in the affected components (enum values)custom_instructions (optional): Custom instructions for bug analysisresource://prd-templateresource://codebase-analysis-templateresource://bug-analysis-templatesrc/
├── server.ts # Main MCP server implementation
├── types/
│ ├── enums.ts # All enum definitions (31 tech + 10 focus)
│ └── index.ts # Type definitions and exports
├── prompts/
│ ├── modules/ # 45 modular prompt components
│ │ ├── technology/ # 31 technology-specific modules
│ │ │ ├── languages/ # 11 language modules
│ │ │ ├── runtimes/ # 1 runtime module
│ │ │ ├── frameworks/ # 10 framework modules (3 frontend, 7 backend)
│ │ │ ├── databases/ # 4 database modules
│ │ │ ├── cloud/ # 3 cloud platform modules
│ │ │ └── tools/ # 2 DevOps tool modules
│ │ ├── analysis-focus/ # 10 focus-area modules
│ │ └── bug-severity/ # 4 severity-specific modules
│ ├── base-prompts/ # Base prompt templates
│ └── prompt-builder.ts # Programmatic prompt assembly
├── resources/
│ ├── templates/ # Modular template components
│ │ ├── prd/ # 10 PRD template modules
│ │ ├── codebase-analysis/ # 8 codebase analysis modules
│ │ └── bug-analysis/ # 4 bug analysis modules
│ └── template-builder.ts # Programmatic template assembly
└── __tests__/ # Comprehensive test suite (66 tests)
├── utils/ # Utility function tests (enum parser)
├── prompts/ # Prompt builder tests
├── resources/ # Template builder tests
└── types/ # Enum and type testsThe project includes a comprehensive test suite with 88% coverage:
# Run all tests
npm test
# Run tests in watch mode
npm run test:watch
# Run tests with coverage report
npm run test:coverage
# Run tests with interactive UI
npm run test:ui
# Test MCP integration
npm run test:mcpTest Statistics:
npm run buildnpm run lintTechnologyStack enum in src/types/enums.tssrc/prompts/modules/technology/languages/src/prompts/modules/technology/frameworks/frontend/ or backend/src/prompts/modules/technology/databases/src/prompts/modules/technology/cloud/src/prompts/modules/technology/tools/TechnologyPromptModule interfaceindex.tsprompt-builder.tssrc/resources/templates/src/__tests__/AnalysisFocus enum in src/types/enums.tssrc/prompts/modules/analysis-focus/AnalysisFocusPromptModule interfaceanalysis-focus/index.tsprompt-builder.tsBugSeverity enum in src/types/enums.tssrc/prompts/modules/bug-severity/BugSeverityPromptModule interfaceContributions are welcome! Please follow these guidelines:
Report issues on GitHub Issues with clear reproduction steps.
This project is licensed under the MIT License - see LICENSE file for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.