chaimi-bookkeeping-mcp 3.0.2 → 3.0.3

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 (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chaimi-bookkeeping-mcp",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "柴米记账 MCP Server - 支持 Claude、Cursor、OpenClaw、WorkBuddy 等 AI 工具直接记账",
5
5
  "main": "server.js",
6
6
  "bin": {
package/server.js CHANGED
@@ -103,7 +103,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
103
103
  type: 'object',
104
104
  properties: {
105
105
  store: { type: 'string', description: '商家名称' },
106
- date: { type: 'string', description: '消费时间(ISO格式)' },
106
+ date: { type: 'string', description: '消费时间(ISO 8601 格式,必须包含日期和时间,如:2026-04-10T13:06:21)' },
107
107
  totalAmount: { type: 'number', description: '总金额' },
108
108
  originalAmount: { type: 'number', description: '应付金额' },
109
109
  discountAmount: { type: 'number', description: '优惠金额' },