@jacobmolz/mcpguard 0.1.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.
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "@jacobmolz/mcpguard",
3
+ "version": "0.1.0",
4
+ "description": "Security proxy daemon for MCP servers — adds auth, rate limiting, PII detection, and audit logging",
5
+ "author": "Jacob Molz",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/jmolz/mcp-guard.git"
11
+ },
12
+ "homepage": "https://github.com/jmolz/mcp-guard#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/jmolz/mcp-guard/issues"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "model-context-protocol",
19
+ "security",
20
+ "proxy",
21
+ "pii",
22
+ "audit",
23
+ "rate-limiting",
24
+ "authentication"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public",
28
+ "registry": "https://registry.npmjs.org/"
29
+ },
30
+ "bin": {
31
+ "mcp-guard": "./dist/cli.js"
32
+ },
33
+ "main": "./dist/cli.js",
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "scripts": {
38
+ "dev": "tsx watch src/cli.ts",
39
+ "build": "tsup",
40
+ "test": "vitest run",
41
+ "test:watch": "vitest",
42
+ "lint": "eslint src/ tests/",
43
+ "lint:fix": "eslint src/ tests/ --fix",
44
+ "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
45
+ "typecheck": "tsc --noEmit",
46
+ "benchmark": "tsx benchmarks/runner.ts",
47
+ "benchmark:quick": "tsx benchmarks/runner.ts --quick",
48
+ "benchmark:security": "tsx benchmarks/runner.ts --suite security",
49
+ "benchmark:legitimate": "tsx benchmarks/runner.ts --suite legitimate",
50
+ "benchmark:performance": "tsx benchmarks/runner.ts --suite performance",
51
+ "prepublishOnly": "pnpm lint && pnpm typecheck && pnpm test && pnpm build"
52
+ },
53
+ "dependencies": {
54
+ "@modelcontextprotocol/sdk": "^1.12.1",
55
+ "better-sqlite3-multiple-ciphers": "^11.9.1",
56
+ "commander": "^13.1.0",
57
+ "jose": "^6.2.2",
58
+ "js-yaml": "^4.1.0",
59
+ "koffi": "^2.9.3",
60
+ "oauth4webapi": "^3.8.5",
61
+ "zod": "^3.24.4"
62
+ },
63
+ "devDependencies": {
64
+ "@types/better-sqlite3": "^7.6.13",
65
+ "@types/js-yaml": "^4.0.9",
66
+ "@types/node": "^22.15.2",
67
+ "eslint": "^9.25.0",
68
+ "prettier": "^3.5.3",
69
+ "tsup": "^8.4.0",
70
+ "tsx": "^4.19.4",
71
+ "typescript": "^5.8.3",
72
+ "typescript-eslint": "^8.31.0",
73
+ "vitest": "^3.1.2"
74
+ },
75
+ "packageManager": "pnpm@10.10.0",
76
+ "engines": {
77
+ "node": ">=22"
78
+ },
79
+ "pnpm": {
80
+ "onlyBuiltDependencies": [
81
+ "better-sqlite3-multiple-ciphers",
82
+ "koffi",
83
+ "esbuild"
84
+ ]
85
+ }
86
+ }