@ccusage/mcp 17.0.3 → 17.1.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.
- package/dist/index.js +3 -3
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import { Hono } from "hono/tiny";
|
|
|
18
18
|
import { z } from "zod";
|
|
19
19
|
import spawn, { SubprocessError } from "nano-spawn";
|
|
20
20
|
var name = "@ccusage/mcp";
|
|
21
|
-
var version = "17.
|
|
21
|
+
var version = "17.1.1";
|
|
22
22
|
var description = "MCP server implementation for ccusage data";
|
|
23
23
|
var d = Object.defineProperty;
|
|
24
24
|
var n = (s, t) => d(s, "name", {
|
|
@@ -527,7 +527,7 @@ const mcpCommand = define({
|
|
|
527
527
|
}
|
|
528
528
|
}
|
|
529
529
|
});
|
|
530
|
-
async function
|
|
530
|
+
async function run(argv = process$1.argv.slice(2)) {
|
|
531
531
|
let args = argv;
|
|
532
532
|
if (args[0] === "ccusage-mcp") args = args.slice(1);
|
|
533
533
|
await cli(args, mcpCommand, {
|
|
@@ -537,5 +537,5 @@ async function runCli(argv = process$1.argv.slice(2)) {
|
|
|
537
537
|
subCommands: /* @__PURE__ */ new Map()
|
|
538
538
|
});
|
|
539
539
|
}
|
|
540
|
-
|
|
540
|
+
await run();
|
|
541
541
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ccusage/mcp",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.1.1",
|
|
4
4
|
"description": "MCP server implementation for ccusage data",
|
|
5
5
|
"homepage": "https://github.com/ryoppippi/ccusage#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@hono/mcp": "^0.1.4",
|
|
32
|
-
"@hono/node-server": "^1.19.
|
|
33
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
32
|
+
"@hono/node-server": "^1.19.4",
|
|
33
|
+
"@modelcontextprotocol/sdk": "^1.18.1",
|
|
34
34
|
"gunshi": "^0.26.3",
|
|
35
35
|
"hono": "^4.9.2",
|
|
36
36
|
"nano-spawn": "^1.0.2",
|
|
37
37
|
"zod": "^3.25.67",
|
|
38
|
-
"
|
|
39
|
-
"ccusage": "17.
|
|
38
|
+
"ccusage": "17.1.1",
|
|
39
|
+
"@ccusage/codex": "17.1.1"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.19.4"
|