chaimi-keep-mcp 3.3.3-beta.4 → 3.3.3-beta.5
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/package.json +1 -1
- package/server.js +4 -0
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -779,6 +779,10 @@ function recordSkillRead() {
|
|
|
779
779
|
// 工具调用处理
|
|
780
780
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
781
781
|
const { name, arguments: args } = request.params;
|
|
782
|
+
|
|
783
|
+
// 【调试】记录实际接收到的参数
|
|
784
|
+
console.log(`[CallTool] ${name} 接收参数:`, JSON.stringify(args, null, 2));
|
|
785
|
+
|
|
782
786
|
const startTime = Date.now();
|
|
783
787
|
const traceId = generateTraceId();
|
|
784
788
|
const osInfo = getOSInfo();
|