forked from respawn-app/tool-filter-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "@respawn-app/tool-filter-mcp",
"version": "0.3.1",
"description": "MCP proxy server that filters tools from upstream MCP servers via regex-based deny list",
"type": "module",
"main": "dist/index.js",
"bin": {
"tool-filter-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc --build",
"test": "vitest",
"lint": "eslint src tests",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"proxy",
"tool-filter",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"files": [
"dist/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"safe-regex2": "^5.0.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.6.1",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
}
}