mcp-server-tester-sse-http-stdio
Version:
MCP Server Tester with SSE support - Test MCP servers using HTTP, SSE, and STDIO transports
13 lines (12 loc) • 386 B
TypeScript
/**
* JSON formatter stub for structured test output
* Future implementation for CI/CD integration
*/
import type { TestEvent, TestFormatter, DisplayOptions } from '../types.js';
export declare class JsonFormatter implements TestFormatter {
private events;
private options;
constructor(options?: DisplayOptions);
onEvent(event: TestEvent): void;
flush(): void;
}