tuxcare-eportal-mcp
Version:
TuxCare ePortal MCP server for integrating with TuxCare ePortal API
17 lines • 528 B
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { EPortalClient } from '../utils/api-client.js';
export declare function registerPatchsetTools(tools: Map<string, Tool>): void;
export declare function handlePatchsetTool(name: string, args: any, client: EPortalClient): Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
//# sourceMappingURL=patchsets.d.ts.map