UNPKG

@turbot/powerpipe-mcp

Version:

Powerpipe MCP server to run benchmarks, detections and controls using AI.

17 lines (16 loc) 304 B
export declare enum PromptName { LIST_MODS = "list_mods" } export interface ModInfo { name: string; version: string; description: string | null; path: string; } export interface QueryResult { content: { type: string; text: string; }[]; isError: boolean; }