/** * MCP Sampling Abuse Scanner * * Detects MCP server configurations that enable unnecessary sampling * (server-initiated LLM calls) or lack rate limits on sampling usage. * * References: * - MCP Spec: https://spec.modelcontextprotocol.io/specification/client-features/sampling/ * - Risk: unrestricted sampling allows servers to make unlimited LLM calls on behalf of users */ import { ScannerModule } from '../types'; export declare const mcpSamplingAbuseScanner: ScannerModule; //# sourceMappingURL=mcp-sampling-abuse-scanner.d.ts.map