@solapi/mcp-server
Version:
MCP server for SOLAPI document search and integration
40 lines • 977 B
TypeScript
import type { ICacheManager, Tool, ToolResult } from '../types/index.js';
/**
* 개요 도구 클래스
*/
export declare class OverviewTool implements Tool {
private cache;
constructor(cache: ICacheManager);
/**
* 도구 정의 반환
*/
getDefinition(): {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
category: {
type: string;
description: string;
enum: string[];
};
};
};
};
/**
* 개요 실행
* @param args - 도구 인수
* @returns 개요 결과
*/
execute(args?: Record<string, unknown>): Promise<ToolResult>;
/**
* 일반 개요 생성
*/
private getGeneralOverview;
/**
* 카테고리별 개요 생성
*/
private getCategoryOverview;
}
//# sourceMappingURL=overviewTool.d.ts.map