sophos-central-mcp-server 0.1.2 → 0.1.4
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/README.md +6 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -27,9 +27,12 @@ Replace `your-client-id` and `your-client-secret` with your [Sophos Central API
|
|
|
27
27
|
### Claude Code
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
SOPHOS_CLIENT_ID=xxx
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
export SOPHOS_CLIENT_ID="xxx"
|
|
31
|
+
export SOPHOS_CLIENT_SECRET="yyy"
|
|
32
|
+
export TRANSPORT="stdio"
|
|
33
|
+
claude mcp add sophos-central -- npx -y sophos-central-mcp-server
|
|
34
|
+
```
|
|
35
|
+
|
|
33
36
|
|
|
34
37
|
## Features
|
|
35
38
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sophos-central-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server for Sophos Central API - SOC monitoring, endpoint management, and admin automation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"sophos-central-mcp": "dist/index.js"
|
|
8
|
+
"sophos-central-mcp": "dist/index.js",
|
|
9
|
+
"sophos-central-mcp-server": "dist/index.js"
|
|
9
10
|
},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "tsc",
|