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.
@@ -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
- // For Telnet import (telnet-client exports as an object, not a class)
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "it-tools-mcp",
3
- "version": "3.0.18",
3
+ "version": "3.0.19",
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",