UNPKG

@debugmcp/mcp-debugger

Version:

Run-time step-through debugging for LLM agents.

14 lines (13 loc) 548 B
import type { Logger as WinstonLoggerType } from 'winston'; import { DebugMcpServer } from '../server.js'; import { StdioOptions } from './setup.js'; export interface ServerFactoryOptions { logLevel?: string; logFile?: string; } export interface StdioCommandDependencies { logger: WinstonLoggerType; serverFactory: (options: ServerFactoryOptions) => DebugMcpServer; exitProcess?: (code: number) => void; } export declare function handleStdioCommand(options: StdioOptions, dependencies: StdioCommandDependencies): Promise<void>;