-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "@richard-stovall/opnsense-mcp-server",
"version": "0.5.3",
"description": "Modular MCP server for OPNsense firewall management - 88 tools providing access to 2000+ methods",
"main": "./index.js",
"module": "./index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/richard-stovall/opnsense-mcp-server.git"
},
"homepage": "https://github.com/richard-stovall/opnsense-mcp-server#readme",
"bugs": {
"url": "https://github.com/richard-stovall/opnsense-mcp-server/issues"
},
"bin": {
"opnsense-mcp-server": "index.js"
},
"scripts": {
"start": "node index.js",
"dev": "tsx watch index.ts",
"help": "node index.js --help",
"build": "tsx src/build.ts",
"generate-tools": "tsx src/generate-tools.ts",
"build:all": "yarn generate-tools && yarn build",
"validate": "node index.js --help > /dev/null 2>&1; echo 'Validation passed'",
"type-check": "tsc --noEmit"
},
"keywords": [
"opnsense",
"mcp",
"model-context-protocol",
"firewall",
"api",
"automation",
"typescript"
],
"author": "Richard Stovall",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"@richard-stovall/opnsense-typescript-client": "0.5.3",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.20.3",
"typescript": "^5.3.3"
},
"files": [
"index.js",
"tools-generated.json",
"README.md",
"LICENSE"
],
"packageManager": "yarn@4.9.2"
}