@trazum/mcp 1.25.0 → 1.26.0

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/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -29,7 +29,7 @@ because "MCP server" reads like infrastructure and this is not.
29
29
  | --- | --- |
30
30
  | `check_prompt` | Does this prompt fit `maxTokens`? And if not, would optimising it fit? |
31
31
  | `optimize_prompt` | The shorter text, the token counts either side, what the difference is worth per month, and any advisories. |
32
- | `profile_usage` | Where the money went, from a usage log passed as text: the spend split, per label and per model, whether caching paid for itself, and the levers that would actually move the bill. The one tool whose figures are exact — they are the provider's own billed counts. |
32
+ | `profile_usage` | Where the money went, from a usage log passed as text: the spend split, per label and per model, whether caching paid for itself, and the levers that would actually move the bill. `label`, `since`/`until` and `previous_log` drill down and compare; `what_if` prices the same calls on another model — arithmetic, not advice, and it says so. The one tool whose figures are exact — they are the provider's own billed counts. |
33
33
  | `list_models` | Prices, context windows and cacheable minimums, with the date the table was reviewed. |
34
34
 
35
35
  `check_prompt` is the one worth wiring up. It has **three** outcomes rather than
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trazum/mcp",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "Trazum as an MCP server: let an agent price and budget its own prompts before it sends them.",
5
5
  "license": "MIT",
6
6
  "author": "David Mu\u00f1oz Rey",
@@ -37,7 +37,7 @@
37
37
  "prepublishOnly": "npm run build && npm test"
38
38
  },
39
39
  "dependencies": {
40
- "@trazum/core": "1.25.0"
40
+ "@trazum/core": "1.26.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "^26.2.0",