@aiclude/security-skill
v3.0.0
Published
AICLUDE Security Vulnerability Scanner - Claude Code Skill for querying the AICLUDE scan database
Maintainers
Readme
@aiclude/security-skill
Security vulnerability scanner for MCP Servers and AI Agent Skills. Provides the /security-scan slash command for Claude Code.
Queries the AICLUDE scan database for existing vulnerability reports. If no report exists, the target is automatically registered and scanned server-side.
Installation
npm install @aiclude/security-skillUsage
As a Claude Code Skill
/security-scan --name @anthropic/mcp-server-fetch
/security-scan --name my-awesome-skill --type skillProgrammatic API
import { SkillHandler } from "@aiclude/security-skill";
const handler = new SkillHandler();
const report = await handler.lookup({
name: "@some/mcp-server",
type: "mcp-server",
});Parameters
| Parameter | Description |
|-----------|-------------|
| --name | Package name to search (npm, GitHub, etc.) |
| --type | mcp-server or skill (auto-detected) |
How It Works
- Sends the package name to the AICLUDE scan API
- If a scan report exists, returns it immediately
- If not, registers the target for server-side scanning
- Waits for the scan to complete and returns the results
Only the package name and type are sent. No source code, files, or credentials are transmitted.
Server-Side Scan Engines
The AICLUDE server runs 7 engines on registered targets:
| Engine | What It Detects | |--------|----------------| | SAST | Code vulnerabilities via pattern matching | | SCA | Known CVEs in dependencies (OSV.dev) | | Tool Analyzer | MCP tool poisoning, shadowing, rug-pull | | DAST | SQL/Command/XSS injection via fuzzing | | Permission Checker | Excessive filesystem/network/process access | | Behavior Monitor | Suspicious runtime behavior patterns | | Malware Detector | Backdoors, cryptominers, ransomware, data stealers |
Output
Reports include:
- Risk Level — CRITICAL / HIGH / MEDIUM / LOW / INFO
- Vulnerability List — code location, description, severity
- Risk Assessment — impact and likelihood analysis
- Remediation — how to fix each finding
Related Packages
@aiclude/security-mcp— MCP Server interface- vs.aiclude.com — Web dashboard with full scan results
License
Apache 2.0 — AICLUDE Inc.
