chaimi-keep-mcp 3.3.1-beta.3 → 3.3.1-beta.4
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/bin/cli.js +1 -1
- package/package.json +1 -1
- package/server.js +3 -0
package/bin/cli.js
CHANGED
|
@@ -297,7 +297,7 @@ function showWelcome() {
|
|
|
297
297
|
|
|
298
298
|
console.error('+--------------------------------------------------------+');
|
|
299
299
|
console.error('| |');
|
|
300
|
-
console.error(
|
|
300
|
+
console.error('| 柴米记账 MCP Server v' + ver + ' |');
|
|
301
301
|
console.error('| |');
|
|
302
302
|
console.error('| 支持: OpenClaw/hermes/WorkBuddy 等国产小龙虾 |');
|
|
303
303
|
console.error('| Claude/Cursor 等支持 MCP 的 Agent |');
|
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -1942,6 +1942,7 @@ function convertParams(toolName, args) {
|
|
|
1942
1942
|
apiProvider: sanitizeString(args.apiProvider, 50) || '',
|
|
1943
1943
|
mcpVersion: MCP_VERSION,
|
|
1944
1944
|
source: 'mcp_txt_expense',
|
|
1945
|
+
_requestToken: args._requestToken,
|
|
1945
1946
|
};
|
|
1946
1947
|
}
|
|
1947
1948
|
|
|
@@ -1998,6 +1999,7 @@ function convertParams(toolName, args) {
|
|
|
1998
1999
|
source: 'mcp_receipt',
|
|
1999
2000
|
storeCategory: sanitizeString(args.storeCategory, 50) || '其他',
|
|
2000
2001
|
storeSubCategory: sanitizeString(args.storeSubCategory, 50) || '其他',
|
|
2002
|
+
_requestToken: args._requestToken,
|
|
2001
2003
|
};
|
|
2002
2004
|
}
|
|
2003
2005
|
|
|
@@ -2039,6 +2041,7 @@ function convertParams(toolName, args) {
|
|
|
2039
2041
|
apiProvider: sanitizeString(args.apiProvider, 50) || '',
|
|
2040
2042
|
mcpVersion: MCP_VERSION,
|
|
2041
2043
|
source: 'mcp_txt_income',
|
|
2044
|
+
_requestToken: args._requestToken,
|
|
2042
2045
|
};
|
|
2043
2046
|
|
|
2044
2047
|
default:
|