@rishibhushan/jenkins-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 +20 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -210,35 +210,36 @@ Settings are loaded in this order (later overrides earlier):
|
|
|
210
210
|
|
|
211
211
|
---
|
|
212
212
|
|
|
213
|
-
##
|
|
213
|
+
## 🚀 Installation/Running the Server
|
|
214
214
|
|
|
215
|
-
###
|
|
216
|
-
|
|
217
|
-
**With VS Code settings:**
|
|
215
|
+
### Option 1: Using npx (No Installation Required)
|
|
218
216
|
```bash
|
|
219
|
-
npx
|
|
217
|
+
npx @rishibhushan/jenkins-mcp-server --env-file .env
|
|
220
218
|
```
|
|
221
219
|
|
|
222
|
-
|
|
220
|
+
### Option 2: Global Installation
|
|
223
221
|
```bash
|
|
224
|
-
|
|
225
|
-
|
|
222
|
+
# Install globally
|
|
223
|
+
npm install -g @rishibhushan/jenkins-mcp-server
|
|
226
224
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
npx github:rishibhushan/jenkins_mcp_server --verbose
|
|
225
|
+
# Run
|
|
226
|
+
jenkins-mcp-server --env-file .env
|
|
230
227
|
```
|
|
231
228
|
|
|
232
|
-
|
|
229
|
+
### Option 3: From GitHub
|
|
233
230
|
```bash
|
|
234
|
-
npx github:rishibhushan/jenkins_mcp_server --
|
|
231
|
+
npx github:rishibhushan/jenkins_mcp_server --env-file .env
|
|
235
232
|
```
|
|
236
233
|
|
|
234
|
+
[//]: # ([](https://www.npmjs.com/package/@rishibhushan/jenkins-mcp-server))
|
|
235
|
+
|
|
236
|
+
[//]: # ([](https://www.npmjs.com/package/@rishibhushan/jenkins-mcp-server))
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
237
240
|
This automatically:
|
|
238
|
-
- ✅ Detects Python 3 installation
|
|
239
|
-
- ✅ Creates isolated virtual environment (`.venv`)
|
|
240
241
|
- ✅ Installs all dependencies
|
|
241
|
-
- ✅ Starts the MCP server
|
|
242
|
+
- ✅ Starts the Jenkins MCP server
|
|
242
243
|
|
|
243
244
|
### Method 2: Direct Python Execution
|
|
244
245
|
|
|
@@ -287,7 +288,7 @@ Add to your VS Code `mcp.json`:
|
|
|
287
288
|
"type": "stdio",
|
|
288
289
|
"command": "npx",
|
|
289
290
|
"args": [
|
|
290
|
-
"
|
|
291
|
+
"@rishibhushan/jenkins-mcp-server"
|
|
291
292
|
]
|
|
292
293
|
}
|
|
293
294
|
}
|
|
@@ -303,7 +304,7 @@ Or `setting.json` with `.env` file and proxy settings:
|
|
|
303
304
|
"type": "stdio",
|
|
304
305
|
"command": "npx",
|
|
305
306
|
"args": [
|
|
306
|
-
"
|
|
307
|
+
"@rishibhushan/jenkins-mcp-server",
|
|
307
308
|
"--verbose",
|
|
308
309
|
"--env-file",
|
|
309
310
|
"/path/to/.env"
|
|
@@ -329,7 +330,7 @@ Add to `claude_desktop_config.json`:
|
|
|
329
330
|
"jenkins": {
|
|
330
331
|
"command": "npx",
|
|
331
332
|
"args": [
|
|
332
|
-
"
|
|
333
|
+
"@rishibhushan/jenkins-mcp-server",
|
|
333
334
|
"--env-file",
|
|
334
335
|
"/path/to/.env"
|
|
335
336
|
]
|