it-tools-mcp 3.2.0 → 3.2.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.
@@ -26,8 +26,7 @@ Add to your VS Code `settings.json`:
26
26
  "it-tools": {
27
27
  "command": "npx",
28
28
  "args": [
29
- "-y",
30
- "wrenchpilot/it-tools-mcp"
29
+ "it-tools-mcp"
31
30
  ],
32
31
  "env": {}
33
32
  }
package/README.md CHANGED
@@ -30,8 +30,7 @@ Add to your VS Code `settings.json`:
30
30
  "it-tools": {
31
31
  "command": "npx",
32
32
  "args": [
33
- "-y",
34
- "wrenchpilot/it-tools-mcp"
33
+ "it-tools-mcp"
35
34
  ],
36
35
  "env": {}
37
36
  }
@@ -310,19 +309,20 @@ This project uses **Conventional Commits** for clear, consistent commit messages
310
309
 
311
310
  **Version Management:**
312
311
 
313
- - 🔧 **Manual version bumping** - Update `package.json` when you want to release
312
+ - 🤖 **Automatic version bumping** - Git hooks automatically bump versions based on commit message types
314
313
  - 🤖 **Automatic publishing** - CI/CD detects changes and publishes automatically
315
- - 🏷️ **Git tags** - Created automatically based on package.json version
314
+ - 🏷️ **Git tags** - Created automatically based on conventional commit messages
316
315
 
317
316
  **Examples:**
317
+
318
318
  ```bash
319
- git commit -m "feat: add new encryption tool"
320
- git commit -m "fix: resolve base64 decoding issue"
321
- git commit -m "docs: improve README examples"
319
+ git commit -m "feat: add new encryption tool" # → minor version bump
320
+ git commit -m "fix: resolve base64 decoding issue" # → patch version bump
321
+ git commit -m "docs: improve README examples" # → patch version bump
322
+ git commit -m "feat!: breaking API change" # → major version bump
322
323
 
323
- # When ready to release, update package.json:
324
- npm version patch # or minor, major
325
- git commit -m "chore: bump version to v1.2.3"
324
+ # Version is automatically bumped and committed by git hooks
325
+ # No manual npm version commands needed!
326
326
  git push
327
327
  ```
328
328
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "it-tools-mcp",
3
- "version": "3.2.0",
3
+ "version": "3.2.3",
4
4
  "description": "MCP server providing access to various IT tools and utilities for developers",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",