pms-analysis-reports-mcp-server
Version:
PMS analysis reports server handling maintenance reports, equipment analysis, compliance tracking, and performance metrics with ERP access for data extraction
26 lines (25 loc) • 556 B
TypeScript
interface Prompt {
name: string;
description?: string;
arguments?: Array<{
name: string;
description?: string;
required?: boolean;
}>;
}
interface TextContent {
type: "text";
text: string;
}
interface PromptMessage {
role: "user" | "assistant";
content: TextContent;
}
interface GetPromptResult {
messages: PromptMessage[];
}
declare const promptList: Prompt[];
export declare function handleGetPrompt(name: string, args?: {
[key: string]: string;
}): GetPromptResult;
export { promptList };