it-tools-mcp 3.0.0 → 3.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.dockerhub.md +21 -0
- package/README.md +23 -2
- package/package.json +1 -1
package/README.dockerhub.md
CHANGED
|
@@ -10,6 +10,27 @@ A comprehensive Model Context Protocol (MCP) server that provides access to **75
|
|
|
10
10
|
|
|
11
11
|
Add to your VS Code `settings.json`:
|
|
12
12
|
|
|
13
|
+
*Node*
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"mcp": {
|
|
18
|
+
"servers": {
|
|
19
|
+
"it-tools": {
|
|
20
|
+
"command": "npx",
|
|
21
|
+
"args": [
|
|
22
|
+
"-y",
|
|
23
|
+
"@wrenchpilot/it-tools-mcp"
|
|
24
|
+
],
|
|
25
|
+
"env": {}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
*Docker*
|
|
33
|
+
|
|
13
34
|
```json
|
|
14
35
|
{
|
|
15
36
|
"mcp": {
|
package/README.md
CHANGED
|
@@ -14,6 +14,27 @@ A comprehensive Model Context Protocol (MCP) server that provides access to 75 I
|
|
|
14
14
|
|
|
15
15
|
Add to your VS Code `settings.json`:
|
|
16
16
|
|
|
17
|
+
*Node*
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcp": {
|
|
22
|
+
"servers": {
|
|
23
|
+
"it-tools": {
|
|
24
|
+
"command": "npx",
|
|
25
|
+
"args": [
|
|
26
|
+
"-y",
|
|
27
|
+
"@wrenchpilot/it-tools-mcp"
|
|
28
|
+
],
|
|
29
|
+
"env": {}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
*Docker*
|
|
37
|
+
|
|
17
38
|
```json
|
|
18
39
|
{
|
|
19
40
|
"mcp": {
|
|
@@ -131,7 +152,7 @@ This MCP server provides **75 tools** across **8 categories**:
|
|
|
131
152
|
| `text-snakecase` | Convert to snake_case | `text: string` |
|
|
132
153
|
| `text-stats` | Get text statistics | `text: string` |
|
|
133
154
|
| `text-diff` | Compare texts | `text1: string`, `text2: string` |
|
|
134
|
-
| `ascii-art-text` | Generate ASCII art | `text: string`, `font?: string` (supports 295+ figlet fonts)
|
|
155
|
+
| `ascii-art-text` | Generate ASCII art | `text: string`, `font?: string` (supports 295+ figlet fonts) |
|
|
135
156
|
| `text-to-nato-alphabet` | Convert to NATO alphabet | `text: string` |
|
|
136
157
|
| `string-obfuscator` | Obfuscate text | `text: string`, `method?: 'html-entities' \| 'unicode' \| 'base64'` |
|
|
137
158
|
| `slugify-string` | Convert to URL slug | `text: string`, `separator?: string`, `lowercase?: boolean` |
|
|
@@ -157,7 +178,7 @@ This MCP server provides **75 tools** across **8 categories**:
|
|
|
157
178
|
| **ID & Code Generators** | | |
|
|
158
179
|
| `uuid-generate` | Generate UUID v4 | None |
|
|
159
180
|
| `ulid-generate` | Generate ULID | None |
|
|
160
|
-
| `qr-generate` | Generate QR codes for any content | `text: string`, `size?: number` - Supports URLs, WiFi (WIFI:T:WPA;S:network;P:password;;), contact info, etc.
|
|
181
|
+
| `qr-generate` | Generate QR codes for any content | `text: string`, `size?: number` - Supports URLs, WiFi (WIFI:T:WPA;S:network;P:password;;), contact info, etc. |
|
|
161
182
|
| `svg-placeholder-generator` | Generate SVG placeholder | `width?: number`, `height?: number`, `text?: string`, `backgroundColor?: string`, `textColor?: string` |
|
|
162
183
|
| **Development Tools** | | |
|
|
163
184
|
| `regex-tester` | Test regular expressions | `pattern: string`, `text: string`, `flags?: string` |
|