defect-inspection-tools-mcp-server
Version:
Defect inspection tools server handling defect detection, analysis, and reporting with AI/ML capabilities for quality control
11 lines (10 loc) • 440 B
TypeScript
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { Prompt, GetPromptResult } from "@modelcontextprotocol/sdk/types.js";
export declare class PromptHandler {
private server;
constructor(server: Server);
getPromptList(): Prompt[];
handleGetPrompt(name: string, arguments_?: Record<string, string>): Promise<GetPromptResult>;
private getGeneralInstructions;
private getCasefileInstructions;
}