chaimi-keep-mcp 3.3.1-beta.1 → 3.3.1-beta.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.
- package/bin/cli.js +10 -7
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -293,13 +293,16 @@ function configureAllAgents() {
|
|
|
293
293
|
* 注意:使用 console.error,避免污染 stdout(MCP 协议通信使用 stdout)
|
|
294
294
|
*/
|
|
295
295
|
function showWelcome() {
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
console.error(
|
|
299
|
-
console.error('
|
|
300
|
-
console.error(
|
|
301
|
-
console.error('
|
|
302
|
-
console.error('
|
|
296
|
+
const ver = CURRENT_VERSION;
|
|
297
|
+
|
|
298
|
+
console.error('+--------------------------------------------------------+');
|
|
299
|
+
console.error('| |');
|
|
300
|
+
console.error(`| 柴米记账 MCP Server v${ver} |`);
|
|
301
|
+
console.error('| |');
|
|
302
|
+
console.error('| 支持: OpenClaw/hermes/WorkBuddy 等国产小龙虾 |');
|
|
303
|
+
console.error('| Claude/Cursor 等支持 MCP 的 Agent |');
|
|
304
|
+
console.error('| |');
|
|
305
|
+
console.error('+--------------------------------------------------------+');
|
|
303
306
|
console.error('');
|
|
304
307
|
}
|
|
305
308
|
|