it-tools-mcp 3.0.18 → 3.0.19
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/build/tools/network.js +1 -3
- package/package.json +1 -1
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) {
|