Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables orchestrating secure software development pipelines with domain-specific compliance (HIPAA, PCI-DSS, etc.), generating pseudocode, threat models, and CI/CD from user stories via natural language.

README.md

MCP SSDLC Security Toolkit v2.0

![CI](https://github.com/vuongdat67/mcp_ssdlc/actions/workflows/ci.yml) ![License: MIT](https://opensource.org/licenses/MIT) ![Node.js](https://nodejs.org/) ![TypeScript](https://www.typescriptlang.org/)

An intelligent, domain-aware Security Software Development Life Cycle (SSDLC) toolkit powered by the Model Context Protocol (MCP). It helps Tech Leads, Security Engineers, and Developers orchestrate secure software design, generate pseudocode, and manage compliance.

🌟 Key Features

  • Domain-Agnostic Core: Built-in support for Healthcare (HIPAA), Fintech (PCI-DSS), Blockchain, Secure Communications, and 12+ more domains. Easily extensible to ANY domain via YAML plugins.
  • Tech Lead Automation: Generates Pseudocode (Python, TS, Java, Go, C#, C++, Rust), Architecture Diagrams (Mermaid), DFD/ERD, and Module Breakdowns from user stories.
  • Full Pipeline Orchestration: One command to run BA → Tech Design → Threat Modeling → QA Strategy → CI/CD Planning → ADR Generation.
  • Multi-format Export: Output to JSON, YAML, Markdown, or professional SRS documents.

📋 Table of Contents

🚀 Getting Started

Prerequisites

  • Node.js v18+
  • pnpm (recommended) or npm

Installation

# Clone the repository
git clone https://github.com/vuongdat67/mcp_ssdlc
cd mcp-ssdlc-security-toolkit

# Install dependencies
pnpm install

# Build the project
pnpm build

💻 Configuration

Claude Desktop App

Add to your Claude Desktop configuration:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "ssdlc-toolkit": {
      "command": "node",
      "args": ["path/to/mcp-ssdlc-security-toolkit/dist/index.js"]
    }
  }
}

VS Code

The project includes .vscode/mcp.json for automatic configuration.

Docker

# Build and run with Docker
docker build -t mcp-ssdlc-toolkit .
docker run -it mcp-ssdlc-toolkit

# Or use docker-compose
docker-compose up ssdlc

🛠️ Available Tools

| Tool | Description | |------|-------------| | list_domains | List all available domain plugins | | load_domain | Load a specific domain | | detect_domain | Auto-detect domain from description | | ba_analyze_requirements | Generate user stories and security requirements | | techlead_design | Generate technical design and pseudocode | | security_threat_model | Generate STRIDE threat model | | qa_design_test_strategy | Generate test strategy | | devops_design_cicd | Generate CI/CD pipeline | | orchestrate_ssdlc_pipeline | Run complete SSDLC pipeline |

🌍 Domains

Built-in Domains

| Domain | Compliance | Use Case | |--------|------------|----------| | healthcare | HIPAA | Patient records, telemedicine | | fintech | PCI-DSS | Payments, banking | | blockchain | - | Smart contracts, DeFi | | secure_comm | GDPR | E2EE messaging | | appsec | OWASP | Security tooling | | ml_ai | - | ML model security | | malware_analysis | - | Malware research | | And 10+ more... | | |

Custom Domains

Create custom domains by adding YAML files to domains/custom/:

# domains/custom/ecommerce/domain.yaml
name: "ecommerce"
keywords: ["shop", "cart", "checkout"]
stakeholders:
  - name: "Shopper"
    type: "end_user"
sensitiveData:
  - type: "Payment Data"
    level: "critical"

🐳 Docker

# Development mode
docker-compose up ssdlc-dev

# Production mode
docker-compose up ssdlc

# Run tests
docker-compose run test

📚 Documentation

Full documentation available in the docs/ directory:

🤝 Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

# Run tests
pnpm test

# Run with coverage
pnpm test:coverage

# Lint
pnpm lint

🗺️ Roadmap

See ROADMAP.md for planned features:

  • v2.1: AI Integration, Interactive CLI, Domain Marketplace
  • v2.5: Real-time Collaboration, Version Control, Third-party Integrations
  • v3.0: Visual Domain Designer, SBOM, Threat Intelligence Feeds

🛠️ Tech Stack

| Feature | Supported Options | |---------|-------------------| | Pseudocode Language | Python, TypeScript, Java, Go, C#, C++, Rust | | Cloud Target | Kubernetes, AWS, Azure, GCP, Docker | | Repo Platform | GitHub, GitLab, Bitbucket | | Export Formats | JSON, YAML, Markdown, SRS |

🤖 Orchestration Example

Ask your AI assistant:

"Design a secure E-wallet system for fintech. Use TypeScript and deploy to AWS. Run the full SSDLC pipeline."

The agent will call orchestrate_ssdlc_pipeline and generate:

  • User stories and security requirements
  • Technical design with pseudocode
  • STRIDE threat model
  • Test strategy
  • CI/CD pipeline
  • Architecture Decision Records (ADRs)
  • Project plan with cost estimation

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

---

Made with ❤️ by the MCP SSDLC team

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.