-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mcptail",
"version": "0.2.0",
"description": "See what your AI agent is actually doing. Passive traffic capture, token attribution, and replay for MCP servers — one command.",
"keywords": [
"mcp",
"modelcontextprotocol",
"observability",
"debugging",
"proxy",
"ai-agents",
"claude",
"cursor",
"developer-tools"
],
"homepage": "https://github.com/Neal006/mcptail",
"repository": {
"type": "git",
"url": "git+https://github.com/Neal006/mcptail.git"
},
"bugs": "https://github.com/Neal006/mcptail/issues",
"license": "MIT",
"author": "Neal006",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"mcptail": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && vite build ui",
"check": "biome check . && npm run typecheck && vitest run --passWithNoTests",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit && tsc -p ui --noEmit",
"test": "vitest run --passWithNoTests",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npm run check"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@modelcontextprotocol/server-everything": "^2026.7.4",
"@preact/preset-vite": "^2.10.5",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^26.1.0",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vite": "^8.1.3",
"vitest": "^4.1.10"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^15.0.0",
"cross-spawn": "^7.0.6",
"preact": "^10.29.4",
"zod": "^3.25.76"
}
}