@bimatrix-aud-platform/aud_mcp_server 1.1.82 → 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.
@@ -54,6 +54,16 @@ export declare function callModuleService(schemaType: string, params: {
54
54
  Key: string;
55
55
  Value: any[];
56
56
  }[]): Promise<SchemaServiceResult>;
57
+ /**
58
+ * i-AUD 서버의 @RAG_SERVING 서버 스크립트를 호출합니다.
59
+ * 벡터 검색(VECTOR_SEARCH)을 수행합니다.
60
+ * @param schemaType VECTOR_SEARCH
61
+ * @param params 추가 파라미터 (#QUERY#, #CATEGORY#, #API_SIDE#, #TOPICS#, #LIMIT#)
62
+ */
63
+ export declare function callRagService(schemaType: string, params: {
64
+ Key: string;
65
+ Value: any[];
66
+ }[]): Promise<SchemaServiceResult>;
57
67
  /**
58
68
  * i-AUD 서버의 @DBMS_LIST 서버 스크립트를 호출하여
59
69
  * 현재 사용자에게 권한이 있는 DB 연결 목록을 가져옵니다.
@@ -297,6 +297,21 @@ export async function callModuleService(schemaType, params) {
297
297
  const packetStr = buildPacket(config, "@AUD_SAVE_SERVICE@MODULE_SERVICE", SERVICE_SOURCE_LIST.MODULE_SERVICE, allParams);
298
298
  return await postServiceRequest(config, url, packetStr);
299
299
  }
300
+ /**
301
+ * i-AUD 서버의 @RAG_SERVING 서버 스크립트를 호출합니다.
302
+ * 벡터 검색(VECTOR_SEARCH)을 수행합니다.
303
+ * @param schemaType VECTOR_SEARCH
304
+ * @param params 추가 파라미터 (#QUERY#, #CATEGORY#, #API_SIDE#, #TOPICS#, #LIMIT#)
305
+ */
306
+ export async function callRagService(schemaType, params) {
307
+ const { config, url } = ensureConfig();
308
+ const allParams = [
309
+ { Key: "#SCHEMA_TYPE#", Value: [schemaType] },
310
+ ...params,
311
+ ];
312
+ const packetStr = buildPacket(config, "@AUD_SAVE_SERVICE@RAG_SERVING", SERVICE_SOURCE_LIST.RAG_SERVING, allParams);
313
+ return await postServiceRequest(config, url, packetStr);
314
+ }
300
315
  /**
301
316
  * i-AUD 서버의 @DBMS_LIST 서버 스크립트를 호출하여
302
317
  * 현재 사용자에게 권한이 있는 DB 연결 목록을 가져옵니다.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimatrix-aud-platform/aud_mcp_server",
3
- "version": "1.1.82",
3
+ "version": "1.1.83",
4
4
  "description": "MCP Server for i-AUD MTSD document validation, generation, schema querying, control info extraction, and database operations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",