@bimatrix-aud-platform/aud_mcp_server 1.1.81 → 1.1.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -979,6 +979,41 @@ const tools = [
|
|
|
979
979
|
required: ["moduleCode"],
|
|
980
980
|
},
|
|
981
981
|
},
|
|
982
|
+
// vector_search: 나중에 다시 open 예정
|
|
983
|
+
// {
|
|
984
|
+
// name: "vector_search",
|
|
985
|
+
// description:
|
|
986
|
+
// "i-AUD API 레퍼런스와 개발 가이드를 벡터 검색합니다. Qdrant 벡터 DB에서 질문과 유사한 문서 chunks를 찾아 반환합니다. 코드 작성 전에 관련 API나 가이드를 검색하는 용도로 사용합니다.",
|
|
987
|
+
// inputSchema: {
|
|
988
|
+
// type: "object",
|
|
989
|
+
// properties: {
|
|
990
|
+
// query: {
|
|
991
|
+
// type: "string",
|
|
992
|
+
// description: "검색 질문 (예: 'DataGrid 행 추가 방법', '서버에서 DB 조회')",
|
|
993
|
+
// },
|
|
994
|
+
// category: {
|
|
995
|
+
// type: "string",
|
|
996
|
+
// enum: ["skill_guide", "api_type_definition", "project_guide"],
|
|
997
|
+
// description: "검색 범위 필터. skill_guide: 개발 가이드, api_type_definition: API 타입 정의, project_guide: 프로젝트 가이드",
|
|
998
|
+
// },
|
|
999
|
+
// api_side: {
|
|
1000
|
+
// type: "string",
|
|
1001
|
+
// enum: ["client", "server"],
|
|
1002
|
+
// description: "API 구분 필터. client: 클라이언트 API, server: 서버 API",
|
|
1003
|
+
// },
|
|
1004
|
+
// topics: {
|
|
1005
|
+
// type: "string",
|
|
1006
|
+
// description: "토픽 필터 (쉼표 구분). 예: 'DataGrid,CRUD'",
|
|
1007
|
+
// },
|
|
1008
|
+
// limit: {
|
|
1009
|
+
// type: "number",
|
|
1010
|
+
// description: "반환 건수 (기본값: 5, 최대: 20)",
|
|
1011
|
+
// default: 5,
|
|
1012
|
+
// },
|
|
1013
|
+
// },
|
|
1014
|
+
// required: ["query"],
|
|
1015
|
+
// },
|
|
1016
|
+
// },
|
|
982
1017
|
];
|
|
983
1018
|
// Create MCP server
|
|
984
1019
|
const server = new Server({
|
|
@@ -2135,7 +2170,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
2135
2170
|
}
|
|
2136
2171
|
// SaveModel 조립
|
|
2137
2172
|
const saveModel = buildSaveModel(reportPath);
|
|
2138
|
-
// 서버 전송 (에러 시 callSaveReportService 내부에서 throw)
|
|
2173
|
+
// 서버 전송 (충돌 검사 포함, 에러 시 callSaveReportService 내부에서 throw)
|
|
2139
2174
|
const resModel = await callSaveReportService(saveModel);
|
|
2140
2175
|
// 서버 응답(ISaveReportModel)으로 로컬 파일 업데이트
|
|
2141
2176
|
const updatedFiles = writeReportResponse(reportPath, resModel);
|
|
@@ -2479,6 +2514,10 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
2479
2514
|
}],
|
|
2480
2515
|
};
|
|
2481
2516
|
}
|
|
2517
|
+
// vector_search: 나중에 다시 open 예정
|
|
2518
|
+
// case "vector_search": {
|
|
2519
|
+
// ... (주석 처리됨)
|
|
2520
|
+
// }
|
|
2482
2521
|
default:
|
|
2483
2522
|
return {
|
|
2484
2523
|
content: [
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* i-AUD 서버 호출에 사용되는 암호화된 커맨드 문자열.
|
|
3
|
-
* buildPacket()의 JScript.Command 값으로 전달됩니다.
|
|
4
|
-
*/
|
|
5
1
|
export declare const SERVICE_SOURCE_LIST: {
|
|
2
|
+
RAG_SERVING: string;
|
|
6
3
|
BOXSTYLE_LIST: string;
|
|
7
4
|
BOXSTYLE_SAVE: string;
|
|
8
5
|
DBMS_LIST: string;
|
|
@@ -10,4 +7,5 @@ export declare const SERVICE_SOURCE_LIST: {
|
|
|
10
7
|
READ_REPORT: string;
|
|
11
8
|
SAVE_REPORT: string;
|
|
12
9
|
SCHEMA_SERVICE: string;
|
|
10
|
+
CHECK_SAVE: string;
|
|
13
11
|
};
|