it-tools-mcp 3.0.14 ā 3.0.15
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 +5 -3
- package/README.md +4 -4
- package/build/tools/idGenerators.js +14 -5
- package/package.json +1 -1
package/README.dockerhub.md
CHANGED
|
@@ -10,7 +10,7 @@ A comprehensive Model Context Protocol (MCP) server that provides access to **86
|
|
|
10
10
|
|
|
11
11
|
Add to your VS Code `settings.json`:
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
### Node
|
|
14
14
|
|
|
15
15
|
```json
|
|
16
16
|
{
|
|
@@ -29,7 +29,7 @@ Add to your VS Code `settings.json`:
|
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
#### Docker
|
|
33
33
|
|
|
34
34
|
```json
|
|
35
35
|
{
|
|
@@ -61,12 +61,14 @@ See the complete list of all 86 tools with detailed parameters on [GitHub](https
|
|
|
61
61
|
## šø Examples in Action
|
|
62
62
|
|
|
63
63
|
### Password Hash Generation
|
|
64
|
+
|
|
64
65
|

|
|
65
66
|
|
|
66
67
|
### ASCII Art Text Generation
|
|
68
|
+
|
|
67
69
|

|
|
68
70
|
|
|
69
|
-
|
|
71
|
+
#### Examples of using the IT Tools MCP server with VS Code Copilot Chat
|
|
70
72
|
|
|
71
73
|
## šļø Architecture
|
|
72
74
|
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ A comprehensive Model Context Protocol (MCP) server that provides access to 86 I
|
|
|
14
14
|
|
|
15
15
|
Add to your VS Code `settings.json`:
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
#### Node
|
|
18
18
|
|
|
19
19
|
```json
|
|
20
20
|
{
|
|
@@ -33,7 +33,7 @@ Add to your VS Code `settings.json`:
|
|
|
33
33
|
}
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
#### Docker
|
|
37
37
|
|
|
38
38
|
```json
|
|
39
39
|
{
|
|
@@ -101,7 +101,7 @@ This MCP server provides **86 tools** across **8 categories**:
|
|
|
101
101
|
|
|
102
102
|

|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
Examples of using the IT Tools MCP server with VS Code Copilot Chat for secure password hashing and creative ASCII art generation.
|
|
105
105
|
|
|
106
106
|
## Available Tools
|
|
107
107
|
|
|
@@ -176,7 +176,7 @@ This MCP server provides **86 tools** across **8 categories**:
|
|
|
176
176
|
| `ipv6-ula-generator` | Generate IPv6 ULA | `globalId?: string` |
|
|
177
177
|
| `url-parse` | Parse URL components | `url: string` |
|
|
178
178
|
| `random-port` | Generate random ports | `count?: number`, `min?: number`, `max?: number`, `exclude?: number[]` |
|
|
179
|
-
| `mac-address-generate` | Generate MAC address | `prefix?: string`, `separator?: ':'
|
|
179
|
+
| `mac-address-generate` | Generate MAC address | `prefix?: string`, `separator?: ':' \| '-'` |
|
|
180
180
|
| `phone-format` | Parse and format phone numbers | `phoneNumber: string`, `countryCode?: string` |
|
|
181
181
|
| `iban-validate` | Validate IBAN | `iban: string` |
|
|
182
182
|
| **Math & Calculations** | | |
|
|
@@ -78,18 +78,18 @@ For production use, please use a proper ULID library.`,
|
|
|
78
78
|
console.log(`[DEBUG] QR code generated successfully`);
|
|
79
79
|
// Extract just the base64 data (remove the data:image/png;base64, prefix)
|
|
80
80
|
const base64Data = dataUrl.split(',')[1];
|
|
81
|
+
const markdown = ``;
|
|
81
82
|
return {
|
|
82
83
|
content: [
|
|
83
84
|
{
|
|
84
85
|
type: "text",
|
|
85
86
|
text: `š± QR Code for: "${text}"
|
|
86
|
-
|
|
87
|
-
š Data encoded: "${text}" (${text.length} characters)
|
|
87
|
+
\nš Data encoded: "${text}" (${text.length} characters)
|
|
88
88
|
šÆ Error correction: Medium (M)
|
|
89
89
|
š Image size: ${Math.max(256, size * 128)}x${Math.max(256, size * 128)} pixels
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
\nā
This QR code can be scanned with any QR code reader app
|
|
91
|
+
š” Generated using the 'qrcode' npm library!
|
|
92
|
+
\n---\n**Markdown for inline display:**\n${markdown}`,
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
type: "image",
|
|
@@ -110,6 +110,15 @@ For production use, please use a proper ULID library.`,
|
|
|
110
110
|
],
|
|
111
111
|
};
|
|
112
112
|
}
|
|
113
|
+
// Fallback return in case of unexpected behavior
|
|
114
|
+
return {
|
|
115
|
+
content: [
|
|
116
|
+
{
|
|
117
|
+
type: "text",
|
|
118
|
+
text: "Unknown error: No response generated by qr-generate.",
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
};
|
|
113
122
|
});
|
|
114
123
|
// SVG placeholder generator
|
|
115
124
|
server.tool("svg-placeholder-generator", "Generate SVG placeholder images", {
|