@etm-professional-control/winccoa-mcp-server 1.0.2 → 1.0.3
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 +10 -2
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -26,10 +26,18 @@ npm install file:C:/Siemens/Automation/WinCC_OA/3.20/javascript/winccoa-manager
|
|
|
26
26
|
|
|
27
27
|
### 2. Configure
|
|
28
28
|
|
|
29
|
+
Create configuration file from template:
|
|
30
|
+
|
|
31
|
+
**Windows:**
|
|
32
|
+
```cmd
|
|
33
|
+
copy .env.example .env
|
|
34
|
+
notepad .env
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**Linux/macOS:**
|
|
29
38
|
```bash
|
|
30
|
-
# Copy and edit configuration
|
|
31
39
|
cp .env.example .env
|
|
32
|
-
|
|
40
|
+
nano .env # or use your preferred editor
|
|
33
41
|
```
|
|
34
42
|
|
|
35
43
|
**Minimal .env setup:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etm-professional-control/winccoa-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "MCP Server for WinCC OA with field-specific configurations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "./build.sh",
|
|
12
|
-
"postinstall": "node postinstall.cjs",
|
|
13
12
|
"inspect": "npx @modelcontextprotocol/inspector",
|
|
14
13
|
"start": "node build/index_stdio.js",
|
|
15
14
|
"start:http": "node build/index_http.js",
|