maximo-mcp-server 1.0.0 → 1.0.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 +12 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -69,10 +69,20 @@ All guides are also available in `.docx` format in the `docs/` folder for offlin
|
|
|
69
69
|
|
|
70
70
|
### Installation
|
|
71
71
|
|
|
72
|
+
### Installation
|
|
73
|
+
|
|
74
|
+
**Method 1: Run directly with npx (Recommended)**
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
npx maximo-mcp-server
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**Method 2: Clone from Source**
|
|
81
|
+
|
|
72
82
|
```bash
|
|
73
83
|
# Clone the repository
|
|
74
|
-
git clone https://github.com/
|
|
75
|
-
cd
|
|
84
|
+
git clone https://github.com/markusvankempen/maximo-mcp-ai-integration-options.git
|
|
85
|
+
cd maximo-mcp-ai-integration-options
|
|
76
86
|
|
|
77
87
|
# Install dependencies
|
|
78
88
|
npm install
|
package/package.json
CHANGED