@pmoses-s1/s1-secops-mcp 1.3.0 → 1.3.1

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 CHANGED
@@ -65,7 +65,7 @@ Add this to `claude_desktop_config.json` (or `.mcp.json` for Claude Code):
65
65
  "mcpServers": {
66
66
  "s1-secops-mcp": {
67
67
  "command": "npx",
68
- "args": ["-y", "@pmoses-s1/s1-secops-mcp@1.3.0"],
68
+ "args": ["-y", "@pmoses-s1/s1-secops-mcp@1.3.1"],
69
69
  "env": {
70
70
  "S1_CONSOLE_URL": "https://usea1-yourorg.sentinelone.net",
71
71
  "S1_CONSOLE_API_TOKEN": "eyJ...",
package/deploy/README.md CHANGED
@@ -56,7 +56,7 @@ Or, equivalently, by package name without the install:
56
56
  "mcpServers": {
57
57
  "s1-secops-mcp": {
58
58
  "command": "npx",
59
- "args": ["-y", "@pmoses-s1/s1-secops-mcp@1.3.0"]
59
+ "args": ["-y", "@pmoses-s1/s1-secops-mcp@1.3.1"]
60
60
  }
61
61
  }
62
62
  }
@@ -363,7 +363,7 @@ Both block the W+X memory mappings V8 needs to JIT JavaScript. Adding them cause
363
363
 
364
364
  These are supported but not first-class:
365
365
 
366
- - **Docker / docker-compose.** Not shipped in this version. The single-file Node binary doesn't need it. If you want a container, the install is `FROM node:20-alpine` + `RUN npm install -g @pmoses-s1/s1-secops-mcp@1.3.0` + `CMD ["s1-secops-mcp", "--transport", "http", "--host", "0.0.0.0"]`. Mount creds at `/etc/s1-secops-mcp/credentials.json` and tokens at `/etc/s1-secops-mcp/bearer-tokens.json`.
366
+ - **Docker / docker-compose.** Not shipped in this version. The single-file Node binary doesn't need it. If you want a container, the install is `FROM node:20-alpine` + `RUN npm install -g @pmoses-s1/s1-secops-mcp@1.3.1` + `CMD ["s1-secops-mcp", "--transport", "http", "--host", "0.0.0.0"]`. Mount creds at `/etc/s1-secops-mcp/credentials.json` and tokens at `/etc/s1-secops-mcp/bearer-tokens.json`.
367
367
 
368
368
  - **External bridge (`supergateway`, `mcp-proxy`).** Pre-1.1.0 deployments used these to wrap the stdio-only server. They still work; this server's native HTTP mode is functionally equivalent and removes the extra process. Prefer native unless you have a specific reason.
369
369
 
@@ -94,7 +94,7 @@ const PROMPTS = [
94
94
 
95
95
  export const SERVER_INFO = {
96
96
  name: 's1-secops-mcp-server',
97
- version: '1.3.0',
97
+ version: '1.3.1',
98
98
  };
99
99
 
100
100
  export const PROTOCOL_VERSION = '2024-11-05';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pmoses-s1/s1-secops-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "MCP server orchestrating SentinelOne skills, APIs, and SOC analyst context. Stdio or Streamable HTTP transport with per-user bearer auth for team deployments.",
5
5
  "type": "module",
6
6
  "main": "index.js",