it-tools-mcp 3.0.18 → 3.0.20
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 +2 -1
- package/README.md +2 -33
- package/build/tools/network.js +1 -3
- package/package.json +1 -1
package/README.dockerhub.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
A comprehensive Model Context Protocol (MCP) server that provides access to **88 IT tools and utilities** commonly used by developers, system administrators, and IT professionals. This server exposes a complete set of tools for encoding/decoding, text manipulation, hashing, network utilities, and many other common development and IT tasks.
|
|
8
8
|
|
|
9
|
+
[](https://glama.ai/mcp/servers/@wrenchpilot/it-tools-mcp)
|
|
10
|
+
|
|
9
11
|
## Using with VS Code
|
|
10
12
|
|
|
11
13
|
Add to your VS Code `settings.json`:
|
|
@@ -88,7 +90,6 @@ This project was developed using **VS Code**, **Copilot Chat Agent**, **Playwrig
|
|
|
88
90
|
```text
|
|
89
91
|
src/
|
|
90
92
|
├── index.ts # Main MCP server
|
|
91
|
-
├── security.ts # Security settings
|
|
92
93
|
└── tools/ # Tool modules by category
|
|
93
94
|
├── encoding.ts # Base64, URL, HTML encoding
|
|
94
95
|
├── crypto.ts # Hashing, JWT, passwords
|
package/README.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
A comprehensive Model Context Protocol (MCP) server that provides access to 87 IT tools and utilities commonly used by developers, system administrators, and IT professionals. This server exposes a complete set of tools for encoding/decoding, text manipulation, hashing, network utilities, and many other common development and IT tasks.
|
|
10
10
|
|
|
11
|
+
[](https://glama.ai/mcp/servers/@wrenchpilot/it-tools-mcp)
|
|
12
|
+
|
|
11
13
|
## 📦 Installation & Setup
|
|
12
14
|
|
|
13
15
|
### Using with VS Code
|
|
@@ -205,38 +207,6 @@ Examples of using the IT Tools MCP server with VS Code Copilot Chat for secure p
|
|
|
205
207
|
| `http-status-codes` | HTTP status reference | `code?: number` |
|
|
206
208
|
| `mime-types` | Look up MIME types | `input: string`, `lookupType?: 'extension-to-mime' \| 'mime-to-extension'` |
|
|
207
209
|
|
|
208
|
-
## 📱 QR Code Usage Examples
|
|
209
|
-
|
|
210
|
-
The `qr-generate` tool supports various content types. Here are common usage patterns:
|
|
211
|
-
|
|
212
|
-
### WiFi Networks
|
|
213
|
-
|
|
214
|
-
```text
|
|
215
|
-
text: "WIFI:T:WPA;S:MyNetwork;P:password123;;"
|
|
216
|
-
text: "WIFI:T:WPA;S:GuestNet;P:welcome123;H:true;;" (hidden network)
|
|
217
|
-
text: "WIFI:T:;S:OpenNetwork;P:;;" (open network)
|
|
218
|
-
```
|
|
219
|
-
|
|
220
|
-
### Contact Information (MECARD format)
|
|
221
|
-
|
|
222
|
-
```text
|
|
223
|
-
text: "MECARD:N:John Doe;TEL:+1234567890;EMAIL:john@example.com;;"
|
|
224
|
-
```
|
|
225
|
-
|
|
226
|
-
### URLs and Links
|
|
227
|
-
|
|
228
|
-
```text
|
|
229
|
-
text: "https://example.com"
|
|
230
|
-
text: "mailto:someone@example.com?subject=Hello&body=Message"
|
|
231
|
-
text: "SMS:+1234567890:Hello from QR code!"
|
|
232
|
-
```
|
|
233
|
-
|
|
234
|
-
### Plain Text
|
|
235
|
-
|
|
236
|
-
```text
|
|
237
|
-
text: "Any text content you want to encode"
|
|
238
|
-
```
|
|
239
|
-
|
|
240
210
|
## 🏗️ Architecture & Development
|
|
241
211
|
|
|
242
212
|
Built with **TypeScript**, **Zod** validation, and **MCP SDK** for robust, type-safe operation.
|
|
@@ -273,7 +243,6 @@ This showcases how AI can accelerate development while maintaining code quality,
|
|
|
273
243
|
```text
|
|
274
244
|
src/
|
|
275
245
|
├── index.ts # Main MCP server
|
|
276
|
-
├── security.ts # Security settings
|
|
277
246
|
└── tools/ # Tool modules by category
|
|
278
247
|
├── encoding.ts # Base64, URL, HTML encoding
|
|
279
248
|
├── crypto.ts # Hashing, JWT, passwords
|
package/build/tools/network.js
CHANGED
|
@@ -2,14 +2,12 @@ import { z } from "zod";
|
|
|
2
2
|
import { Client as SSHClient } from "ssh2";
|
|
3
3
|
import ping from "ping";
|
|
4
4
|
import dns from "dns";
|
|
5
|
-
import Telnet from "telnet-client";
|
|
6
5
|
import psList from "ps-list";
|
|
7
6
|
import fs from "fs";
|
|
8
7
|
import readLastLines from "read-last-lines";
|
|
9
8
|
import path from "path";
|
|
10
9
|
import os from "os";
|
|
11
|
-
//
|
|
12
|
-
const TelnetClient = Telnet.Telnet || Telnet;
|
|
10
|
+
// Removed unused imports: exec, Telnet, shellEscape
|
|
13
11
|
function resolvePrivateKey(privateKeyArg) {
|
|
14
12
|
// If not provided, try default keys
|
|
15
13
|
if (!privateKeyArg) {
|