@agenticmail/mcp 0.9.0 → 0.9.1

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/dist/index.js +3 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -24674,13 +24674,15 @@ ${r.tail.join("\n")}`;
24674
24674
  const from = w.trigger?.from ? ` (from ${w.trigger.from})` : "";
24675
24675
  const preview = w.resultPreview ? `
24676
24676
  \u2192 ${String(w.resultPreview).slice(0, 140).replace(/\s+/g, " ").trim()}` : "";
24677
+ const usage = w.usage ? `
24678
+ \u26A1 ${String(w.usage)}` : "";
24677
24679
  let status = w.endedAtMs ? w.ok === false ? "failed" : "finished" : "running";
24678
24680
  if (!w.endedAtMs && w.stale) status = "running (stale heartbeat)";
24679
24681
  const turns = !w.endedAtMs && typeof w.turnCount === "number" ? ` \xB7 ${w.turnCount} tool calls` : "";
24680
24682
  const tool = !w.endedAtMs && w.lastTool ? ` \xB7 last tool: ${w.lastTool}` : "";
24681
24683
  const idHint = !w.endedAtMs ? `
24682
24684
  id: ${w.workerId} (use tail_worker for the log)` : "";
24683
- return ` ${prefix} ${w.agentName} [${w.kind}] ${status} ${dur}${turns}${tool}${trig}${from}${preview}${idHint}`;
24685
+ return ` ${prefix} ${w.agentName} [${w.kind}] ${status} ${dur}${turns}${tool}${trig}${from}${preview}${usage}${idHint}`;
24684
24686
  };
24685
24687
  const lines = [];
24686
24688
  if (activeList.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/mcp",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "mcpName": "io.github.agenticmail/mcp",
5
5
  "description": "MCP server for AgenticMail — give any AI client real email and SMS capabilities",
6
6
  "type": "module",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@modelcontextprotocol/sdk": "^1.12.0",
32
32
  "zod": "^3.24.0",
33
- "@agenticmail/core": "^0.9.0"
33
+ "@agenticmail/core": "^0.9.1"
34
34
  },
35
35
  "devDependencies": {
36
36
  "tsup": "^8.4.0",