UNPKG

ludus-mcp

Version:

MCP server for managing Ludus cybersecurity training environments through natural language commands

11 lines 491 B
import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { Logger } from '../utils/logger.js'; export interface GetCredentialFromUserArgs { credName: string; description?: string; isPassword?: boolean; help?: boolean; } export declare function createGetCredentialFromUserTool(logger: Logger): Tool; export declare function handleGetCredentialFromUser(args: GetCredentialFromUserArgs, logger: Logger): Promise<any>; //# sourceMappingURL=getCredentialFromUser.d.ts.map