@guardbee/security-suite
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@guardbee/security-suitescan my repository for leaked secrets and audit dependencies for CVEs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@guardbee/security-suite
Tüm GuardBee MCP güvenlik araçlarını tek pakette toplayan meta-paket. Secret scanner, dependency auditor, SSL inspector ve DNS intelligence tek kurulumla kullanılabilir.
Hızlı Başlangıç
npm install -g @guardbee/security-suiteClaude Desktop (MCP — tüm araçlar tek server)
{
"mcpServers": {
"guardbee": {
"command": "npx",
"args": ["-y", "@guardbee/security-suite", "serve"]
}
}
}Related MCP server: security-framework-mcp
CLI Kullanımı
guardbee secret-scan <path> # Secret taraması
guardbee dep-audit <dir> # CVE denetimi
guardbee ssl-inspect <domain>... # TLS denetimi
guardbee dns-check <domain> # DNS/SPF/DMARC kontrolüOrtak Seçenekler
--fail-on=<level> critical | high | medium | low (varsayılan: araç özelinde)
--format=text|json|sarifÖrnekler
guardbee secret-scan . --fail-on=high
guardbee dep-audit . --fail-on=critical --format=sarif > results.sarif
guardbee ssl-inspect example.com api.example.com shop.example.com
guardbee dns-check example.com --fail-on=mediumCI/CD Entegrasyonu
GitHub Actions
name: Security Suite
on: [push, pull_request]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: 20 }
- run: npm ci
- name: Secret scan
run: npx @guardbee/security-suite secret-scan . --fail-on=high
- name: Dependency audit
run: npx @guardbee/security-suite dep-audit . --fail-on=high
- name: SARIF upload (GitHub Security tab)
if: always()
run: |
npx @guardbee/security-suite secret-scan . --format=sarif > secrets.sarif || true
npx @guardbee/security-suite dep-audit . --format=sarif > deps.sarif || true
- uses: github/codeql-action/upload-sarif@v3
if: always()
with:
sarif_file: secrets.sarif
- uses: github/codeql-action/upload-sarif@v3
if: always()
with:
sarif_file: deps.sarifGitLab CI
include:
- template: Security/Secret-Detection.gitlab-ci.yml
guardbee-security:
image: node:20
script:
- npx @guardbee/security-suite secret-scan . --fail-on=high
- npx @guardbee/security-suite dep-audit . --fail-on=high
only:
- merge_requests
- mainDahil Olan Araçlar
Araç | Paket | Açıklama |
|
| 40+ pattern ile secret tespiti |
|
| OSV CVE veritabanı denetimi |
|
| TLS sertifika ve cipher analizi |
|
| DNS, SPF, DMARC, dangling subdomain |
Lisans
MIT — GuardBee
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Cybersecurity MCP server for URL scanning, threat intelligence, and domain reputation.
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
Enrich, search, assess, and manage threat intelligence through 80+ typed MCP tools.
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
Related MCP Servers
- AlicenseAqualityNot gradedmaintenanceEnterprise-grade MCP (Model Context Protocol) server for detecting secrets and sensitive information in GitHub repositories. Scans for 35+ types of secrets including API keys, passwords, tokens, and credentials with production-ready reliability features.50-
- AlicenseAqualityDmaintenanceUnified MCP server integrating NIST and OWASP security frameworks with live vulnerability data, enabling security searches, compliance mapping, threat modeling, and checklist generation.4114MIT
- AlicenseCqualityDmaintenanceEnterprise-grade MCP server for static application security testing with multi-tool integration, compliance verification, AI-powered remediation, and multi-tenant management.2310MIT
- AlicenseNot gradedqualityDmaintenanceMCP server that integrates with ARXsec.io API to execute security scans, compliance checks, secrets management, and remediation actions with policy enforcement, audit logging, and human approval workflows.MIT