@wartzar-bee/tokenscope-mcp 0.1.0 → 0.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/package.json +23 -9
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wartzar-bee/tokenscope-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server for tokenscope
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "MCP server for tokenscope \u2014 let AI agents analyze Claude Code session cost & context attribution (reuses tokenscope's engine; local, read-only).",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin": {
|
|
6
|
+
"bin": {
|
|
7
|
+
"tokenscope-mcp": "server.mjs"
|
|
8
|
+
},
|
|
7
9
|
"scripts": {
|
|
8
10
|
"start": "node server.mjs",
|
|
9
11
|
"test": "node test/mcp.test.mjs"
|
|
@@ -20,14 +22,26 @@
|
|
|
20
22
|
"context-window",
|
|
21
23
|
"anthropic"
|
|
22
24
|
],
|
|
23
|
-
"repository": {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/wartzar-bee/tokenscope.git",
|
|
28
|
+
"directory": "mcp"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/wartzar-bee/tokenscope/tree/main/mcp#readme",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/wartzar-bee/tokenscope/issues"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
},
|
|
27
37
|
"dependencies": {
|
|
28
38
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
29
39
|
"@wartzar-bee/tokenscope": "^0.2.0"
|
|
30
40
|
},
|
|
31
|
-
"files": [
|
|
32
|
-
|
|
41
|
+
"files": [
|
|
42
|
+
"server.mjs",
|
|
43
|
+
"README.md"
|
|
44
|
+
],
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"mcpName": "io.github.wartzar-bee/tokenscope"
|
|
33
47
|
}
|