vibe-guard
Version:
🛡️ Vibe-Guard Security Scanner - 25 essential security rules to catch vulnerabilities before they catch you! Zero dependencies, instant setup, works everywhere, optimized performance. Detects SQL injection, XSS, exposed secrets, CSRF, CORS issues, and mo
11 lines • 525 B
TypeScript
import { BaseRule, FileContent, SecurityIssue } from '../types';
export declare class McpServerSecurityRule extends BaseRule {
readonly name = "mcp-server-security";
readonly description = "Detects insecure Model Context Protocol (MCP) server configurations";
readonly severity: "high";
private readonly insecurePatterns;
private readonly contextPatterns;
private readonly falsePositivePatterns;
check(fileContent: FileContent): SecurityIssue[];
}
//# sourceMappingURL=mcp-server-security.d.ts.map