chaimi-keep-mcp 3.1.44-beta.4 → 3.1.44

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.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/package.json +1 -1
  3. package/server.js +0 -3
package/README.md CHANGED
@@ -141,6 +141,19 @@ AI 会自动调用 `save_income` 工具记录收入。
141
141
 
142
142
  ## 更新日志
143
143
 
144
+ ### v3.1.44 (2026-04-21) 🎉 正式版
145
+ - **正式发布** 包含所有 beta 版本修复
146
+ - MCP 调用日志字段缺失修复
147
+ - get_text_parse_prompt 改为云端实现
148
+ - 统一字段命名规范(mcp_version → mcpVersion)
149
+ - 简化工具参数定义
150
+
151
+ ### v3.1.44-beta.5 (2026-04-21)
152
+ - **优化** 简化工具参数定义
153
+ - 从 `save_expense`、`save_receipt`、`save_income` 中移除 `mcpVersion` 参数
154
+ - `mcpVersion` 由服务器自动填充,无需 Agent 传递
155
+ - 简化 Agent 调用流程
156
+
144
157
  ### v3.1.44-beta.4 (2026-04-21)
145
158
  - **优化** 统一字段命名规范
146
159
  - 将 `mcp_version` 改为 `mcpVersion`,统一使用驼峰命名法
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chaimi-keep-mcp",
3
- "version": "3.1.44-beta.4",
3
+ "version": "3.1.44",
4
4
  "description": "柴米记账 MCP Server - 支持 Claude、Cursor、OpenClaw、WorkBuddy 等 AI 工具直接记账",
5
5
  "main": "server.js",
6
6
  "bin": {
package/server.js CHANGED
@@ -170,7 +170,6 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
170
170
  agentType: { type: 'string', description: '【必填】Agent类型,如:claude-desktop、cursor、openclaw、workbuddy、trae' },
171
171
  apiProvider: { type: 'string', description: '【必填】AI服务提供商,如:anthropic、openai、doubao、aliyun' },
172
172
  rawInput: { type: 'string', description: '【必填】用户的原始输入内容,用于记录用户原始请求' },
173
- mcpVersion: { type: 'string', description: 'MCP Server 版本号(自动填充)' },
174
173
  },
175
174
  required: ['name', 'amount', 'category', 'agentType', 'apiProvider', 'rawInput'],
176
175
  },
@@ -214,7 +213,6 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
214
213
  agentType: { type: 'string', description: '【必填】Agent类型:claude-desktop、cursor、openclaw、workbuddy、trae' },
215
214
  apiProvider: { type: 'string', description: '【必填】AI服务提供商:anthropic、openai、doubao、aliyun' },
216
215
  rawInput: { type: 'string', description: '【必填】用户的原始输入内容' },
217
- mcpVersion: { type: 'string', description: '【自动填充】MCP Server版本号' },
218
216
  },
219
217
  required: ['store', 'items', 'storeCategory', 'storeSubCategory', 'agentType', 'apiProvider', 'rawInput'],
220
218
  },
@@ -315,7 +313,6 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
315
313
  agentType: { type: 'string', description: '【必填】Agent类型,如:claude-desktop、cursor、openclaw、workbuddy、trae' },
316
314
  apiProvider: { type: 'string', description: '【必填】AI服务提供商,如:anthropic、openai、doubao、aliyun' },
317
315
  rawInput: { type: 'string', description: '【必填】用户的原始输入内容,用于记录用户原始请求' },
318
- mcpVersion: { type: 'string', description: 'MCP Server 版本号(自动填充)' },
319
316
  },
320
317
  required: ['name', 'amount', 'category', 'agentType', 'apiProvider', 'rawInput'],
321
318
  },