it-tools-mcp 3.2.7 → 3.2.8

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.
Files changed (2) hide show
  1. package/README.md +132 -132
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -20,7 +20,9 @@ A comprehensive Model Context Protocol (MCP) server that provides access to 112
20
20
 
21
21
  ### Using with VS Code
22
22
 
23
- [![Install IT Tools](https://img.shields.io/badge/Install%20in%20VS%20Code-blue?logo=visual-studio-code)](vscode:mcp/install?%7B%22name%22%3A%22it-tools-mcp%22%2C%22gallery%22%3Atrue%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D)
23
+ **[Install IT Tools MCP in VS Code](vscode:mcp/install?%7B%22name%22%3A%22it-tools-mcp%22%2C%22gallery%22%3Atrue%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D)**
24
+
25
+ *Click the link above in VS Code to install the IT Tools MCP server.*
24
26
 
25
27
  Add to your VS Code `settings.json`:
26
28
 
@@ -32,9 +34,7 @@ Add to your VS Code `settings.json`:
32
34
  "servers": {
33
35
  "it-tools": {
34
36
  "command": "npx",
35
- "args": [
36
- "it-tools-mcp"
37
- ],
37
+ "args": ["it-tools-mcp"],
38
38
  "env": {}
39
39
  }
40
40
  }
@@ -120,134 +120,134 @@ Examples of using the IT Tools MCP server with VS Code Copilot Chat for secure p
120
120
 
121
121
  ## Available Tools
122
122
 
123
- | Tool | Description | Parameters |
124
- | --------------------------- | -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
125
- | **Ansible Tools** | | |
126
- | `ansible-inventory-generator` | Generate Ansible inventory | `hosts: string[]`, `groups?: Record<string, string[]>`, `variables?: Record<string, any>` |
127
- | `ansible-playbook-validator` | Validate Ansible playbook YAML | `playbook: string` |
128
- | `ansible-reference` | Ansible syntax and module reference | `query?: string` |
129
- | `ansible-vault-decrypt` | Decrypt Ansible Vault data | `data: string`, `password: string` |
130
- | `ansible-vault-encrypt` | Encrypt data with Ansible Vault | `data: string`, `password: string` |
131
- | **Color Tools** | | |
132
- | `color-hex-to-rgb` | Convert HEX to RGB | `hex: string` |
133
- | `color-rgb-to-hex` | Convert RGB to HEX | `r: number`, `g: number`, `b: number` |
134
- | **Data Format** | | |
135
- | `html-to-markdown` | Convert HTML to Markdown | `html: string` |
136
- | `json-diff` | Compare JSON objects | `json1: string`, `json2: string` |
137
- | `json-format` | Format and validate JSON | `json: string`, `indent?: number` |
138
- | `json-minify` | Minify JSON | `json: string` |
139
- | `json-to-csv` | Convert JSON to CSV | `json: string`, `delimiter?: string` |
140
- | `json-to-toml` | Convert JSON to TOML | `json: string` |
141
- | `markdown-to-html` | Convert Markdown to HTML | `markdown: string` |
142
- | `phone-format` | Parse and format phone numbers | `phoneNumber: string`, `countryCode?: string` |
143
- | `sql-format` | Format SQL | `sql: string`, `dialect?: 'sql' \| 'mysql' \| 'postgresql' \| 'sqlite' \| 'mariadb' \| 'db2' \| 'plsql' \| 'n1ql' \| 'redshift' \| 'spark' \| 'tsql' \| 'trino' \| 'bigquery'` (optional, default: 'sql') |
144
- | `toml-to-json` | Convert TOML to JSON | `toml: string` |
145
- | `xml-format` | Format XML | `xml: string`, `indent?: number` |
146
- | `yaml-format` | Format YAML | `yaml: string` |
147
- | **Development Tools** | | |
148
- | `crontab-generate` | Generate cron expressions | `minute?: string`, `hour?: string`, `dayOfMonth?: string`, `month?: string`, `dayOfWeek?: string` |
149
- | `html-prettifier` | Format and prettify HTML | `html: string`, `indent?: number` |
150
- | `javascript-prettifier` | Format and prettify JavaScript | `javascript: string`, `indent?: number` |
151
- | `list-converter` | Convert list formats | `list: string`, `inputFormat: 'comma' \| 'semicolon' \| 'newline' \| 'space' \| 'pipe'`, `outputFormat: 'comma' \| 'semicolon' \| 'newline' \| 'space' \| 'pipe' \| 'json' \| 'quoted'`, `trim?: boolean` |
152
- | `markdown-toc-generator` | Generate table of contents for Markdown | `markdown: string`, `maxDepth?: number` |
153
- | `regex-tester` | Test regular expressions | `pattern: string`, `text: string`, `flags?: string` |
154
- | **Docker Tools** | | |
155
- | `docker-compose-to-docker-run` | Convert Compose to Docker run command | `compose: string`, `service?: string` |
156
- | `docker-compose-validator` | Validate Docker Compose YAML | `compose: string` |
157
- | `docker-reference` | Docker command and syntax reference | `query?: string` |
158
- | `docker-run-to-docker-compose` | Convert Docker run to Compose | `command: string` |
159
- | `traefik-compose-generator` | Generate Traefik Docker Compose | `domain: string`, `service: string`, `port?: number`, `network?: string` |
160
- | **Encoding & Decoding** | | |
161
- | `base64-decode` | Decode Base64 text | `text: string` |
162
- | `base64-encode` | Encode text to Base64 | `text: string` |
163
- | `html-decode` | Decode HTML entities | `text: string` |
164
- | `html-encode` | Encode HTML entities | `text: string` |
165
- | `html-entities-extended` | Extended HTML entity encoding/decoding | `text: string`, `operation: 'encode' \| 'decode'` |
166
- | `text-to-binary` | Convert text to binary and vice versa | `input: string`, `operation: 'encode' \| 'decode'` |
167
- | `text-to-unicode` | Convert text to Unicode and vice versa | `input: string`, `operation: 'encode' \| 'decode'` |
168
- | `url-decode` | URL decode text | `text: string` |
169
- | `url-encode` | URL encode text | `text: string` |
170
- | **Forensic Tools** | | |
171
- | `file-type-identifier` | Identify file type from content | `data: string`, `filename?: string` |
172
- | `safelink-decoder` | Decode Microsoft SafeLinks | `url: string` |
173
- | `url-fanger` | Fang and defang URLs for analysis | `text: string`, `operation: 'fang' \| 'defang'` |
174
- | **ID & Code Generators** | | |
175
- | `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. |
176
- | `svg-placeholder-generator` | Generate SVG placeholder | `width?: number`, `height?: number`, `text?: string`, `backgroundColor?: string`, `textColor?: string` |
177
- | `ulid-generate` | Generate ULID | None |
178
- | `uuid-generate` | Generate UUID v4 | None |
179
- | **Math & Calculations** | | |
180
- | `math-evaluate` | Evaluate expressions | `expression: string` |
181
- | `number-base-converter` | Convert number bases | `number: string`, `fromBase: number`, `toBase: number` |
182
- | `percentage-calculator` | Calculate percentages | `operation: 'percentage-of' \| 'what-percentage' \| 'percentage-change'`, `value1: number`, `value2: number` |
183
- | `roman-numeral-converter` | Convert Roman numerals | `input: string` |
184
- | `temperature-converter` | Convert temperatures | `temperature: number`, `from: 'celsius' \| 'fahrenheit' \| 'kelvin'`, `to: 'celsius' \| 'fahrenheit' \| 'kelvin'` |
185
- | `unix-timestamp-converter` | Convert timestamps | `input: string` |
186
- | **Network & System** | | |
187
- | `cat` | Display file content | `file: string` |
188
- | `curl` | HTTP client (GET, POST, etc.) | `url: string`, `method?: string`, `headers?: Record<string, string>`, `body?: string` |
189
- | `dig` | DNS query (custom type) | `target: string`, `type?: string` |
190
- | `grep` | Search for pattern in file | `file: string`, `pattern: string` |
191
- | `head` | Show first N lines of file | `file: string`, `lines?: number` |
192
- | `iban-validate` | Validate IBAN | `iban: string` |
193
- | `ip-subnet-calculator` | Calculate IPv4 subnet | `ip: string`, `cidr: number` |
194
- | `ipv4-subnet-calc` | Enhanced IPv4 subnet calc | `cidr: string` |
195
- | `ipv6-ula-generator` | Generate IPv6 ULA | `globalId?: string` |
196
- | `mac-address-generate` | Generate MAC address | `prefix?: string`, `separator?: ':' \| '-'` |
197
- | `nslookup` | DNS lookup (A/AAAA/CNAME) | `target: string` |
198
- | `ping` | Ping a host | `target: string`, `count?: number` |
199
- | `ps` | List running processes | None |
200
- | `random-port` | Generate random ports | `count?: number`, `min?: number`, `max?: number`, `exclude?: number[]` |
201
- | `scp` | Copy files to/from remote host (SFTP) | `target: string`, `user: string`, `direction: 'upload'\|'download'`, `localPath: string`, `remotePath: string`, `privateKey?: string` |
202
- | `ssh` | SSH command execution | `target: string`, `user: string`, `command: string` |
203
- | `tail` | Show last N lines of file | `file: string`, `lines?: number` |
204
- | `telnet` | Test TCP connectivity | `target: string`, `port: number` |
205
- | `top` | Show top processes (by CPU) | None |
206
- | `url-parse` | Parse URL components | `url: string` |
207
- | **Physics** | | |
208
- | `angle-converter` | Convert angle units | `value: number`, `from: 'degrees' \| 'radians' \| 'gradians'`, `to: 'degrees' \| 'radians' \| 'gradians'` |
209
- | `energy-converter` | Convert energy units | `value: number`, `from: 'joules' \| 'calories' \| 'kwh' \| 'btu'`, `to: 'joules' \| 'calories' \| 'kwh' \| 'btu'` |
210
- | `power-converter` | Convert power units | `value: number`, `from: 'watts' \| 'kilowatts' \| 'horsepower' \| 'btu_per_hour'`, `to: 'watts' \| 'kilowatts' \| 'horsepower' \| 'btu_per_hour'` |
211
- | **Security & Crypto** | | |
212
- | `basic-auth-generator` | Generate Basic Auth header | `username: string`, `password: string` |
213
- | `bcrypt-hash` | Generate/verify bcrypt hash | `password: string`, `rounds?: number`, `hash?: string` |
214
- | `bip39-generate` | Generate BIP39 mnemonic | `wordCount?: '12' \| '15' \| '18' \| '21' \| '24'` |
215
- | `hash-md5` | Generate MD5 hash | `text: string` |
216
- | `hash-sha1` | Generate SHA1 hash | `text: string` |
217
- | `hash-sha256` | Generate SHA256 hash | `text: string` |
218
- | `hash-sha512` | Generate SHA512 hash | `text: string` |
219
- | `hmac-generator` | Generate HMAC | `message: string`, `key: string`, `algorithm?: 'sha1' \| 'sha256' \| 'sha512'` |
220
- | `jwt-decode` | Decode JWT token | `token: string` |
221
- | `otp-code-generator` | Generate TOTP codes | `secret: string`, `digits?: number`, `period?: number` |
222
- | `password-generate` | Generate secure password | `length?: number`, `includeUppercase?: boolean`, `includeLowercase?: boolean`, `includeNumbers?: boolean`, `includeSymbols?: boolean` |
223
- | `token-generator` | Generate secure token | `length?: number`, `charset?: 'alphanumeric' \| 'hex' \| 'base64' \| 'custom'`, `customChars?: string` |
224
- | **Text Processing** | | |
225
- | `ascii-art-text` | Generate ASCII art | `text: string`, `font?: string` (supports 295+ figlet fonts) |
226
- | `distinct-words` | Extract unique words from text | `text: string`, `caseSensitive?: boolean` |
227
- | `emoji-search` | Search emojis | `query: string` |
228
- | `lorem-ipsum-generator` | Generate Lorem Ipsum | `type?: 'words' \| 'sentences' \| 'paragraphs'`, `count?: number` |
229
- | `numeronym-generator` | Generate numeronyms | `text: string` |
230
- | `slugify-string` | Convert to URL slug | `text: string`, `separator?: string`, `lowercase?: boolean` |
231
- | `string-obfuscator` | Obfuscate text | `text: string`, `method?: 'html-entities' \| 'unicode' \| 'base64'` |
232
- | `text-camelcase` | Convert to camelCase | `text: string` |
233
- | `text-capitalize` | Capitalize words | `text: string` |
234
- | `text-diff` | Compare texts | `text1: string`, `text2: string` |
235
- | `text-kebabcase` | Convert to kebab-case | `text: string` |
236
- | `text-lowercase` | Convert to lowercase | `text: string` |
237
- | `text-pascalcase` | Convert to PascalCase | `text: string` |
238
- | `text-snakecase` | Convert to snake_case | `text: string` |
239
- | `text-stats` | Get text statistics | `text: string` |
240
- | `text-to-nato-alphabet` | Convert to NATO alphabet | `text: string` |
241
- | `text-to-unicode-names` | Convert text to Unicode character names | `text: string` |
242
- | `text-uppercase` | Convert to uppercase | `text: string` |
243
- | **Utility Tools** | | |
244
- | `css-prettifier` | Format and prettify CSS | `css: string`, `indent?: number` |
245
- | `device-info` | Get system information | None |
246
- | `email-normalizer` | Normalize email addresses | `email: string` |
247
- | `http-status-codes` | HTTP status reference | `code?: number` |
248
- | `mime-types` | Look up MIME types | `input: string`, `lookupType?: 'extension-to-mime' \| 'mime-to-extension'` |
249
- | `port-numbers` | Look up port number assignments | `port?: number`, `service?: string` |
250
- | `rem-px-converter` | Convert between REM and PX units | `value: number`, `conversion: 'rem-to-px' \| 'px-to-rem'`, `baseFontSize?: number` |
123
+ | Tool | Description | Parameters |
124
+ | ------------------------------ | --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
125
+ | **Ansible Tools** | | |
126
+ | `ansible-inventory-generator` | Generate Ansible inventory | `hosts: string[]`, `groups?: Record<string, string[]>`, `variables?: Record<string, any>` |
127
+ | `ansible-playbook-validator` | Validate Ansible playbook YAML | `playbook: string` |
128
+ | `ansible-reference` | Ansible syntax and module reference | `query?: string` |
129
+ | `ansible-vault-decrypt` | Decrypt Ansible Vault data | `data: string`, `password: string` |
130
+ | `ansible-vault-encrypt` | Encrypt data with Ansible Vault | `data: string`, `password: string` |
131
+ | **Color Tools** | | |
132
+ | `color-hex-to-rgb` | Convert HEX to RGB | `hex: string` |
133
+ | `color-rgb-to-hex` | Convert RGB to HEX | `r: number`, `g: number`, `b: number` |
134
+ | **Data Format** | | |
135
+ | `html-to-markdown` | Convert HTML to Markdown | `html: string` |
136
+ | `json-diff` | Compare JSON objects | `json1: string`, `json2: string` |
137
+ | `json-format` | Format and validate JSON | `json: string`, `indent?: number` |
138
+ | `json-minify` | Minify JSON | `json: string` |
139
+ | `json-to-csv` | Convert JSON to CSV | `json: string`, `delimiter?: string` |
140
+ | `json-to-toml` | Convert JSON to TOML | `json: string` |
141
+ | `markdown-to-html` | Convert Markdown to HTML | `markdown: string` |
142
+ | `phone-format` | Parse and format phone numbers | `phoneNumber: string`, `countryCode?: string` |
143
+ | `sql-format` | Format SQL | `sql: string`, `dialect?: 'sql' \| 'mysql' \| 'postgresql' \| 'sqlite' \| 'mariadb' \| 'db2' \| 'plsql' \| 'n1ql' \| 'redshift' \| 'spark' \| 'tsql' \| 'trino' \| 'bigquery'` (optional, default: 'sql') |
144
+ | `toml-to-json` | Convert TOML to JSON | `toml: string` |
145
+ | `xml-format` | Format XML | `xml: string`, `indent?: number` |
146
+ | `yaml-format` | Format YAML | `yaml: string` |
147
+ | **Development Tools** | | |
148
+ | `crontab-generate` | Generate cron expressions | `minute?: string`, `hour?: string`, `dayOfMonth?: string`, `month?: string`, `dayOfWeek?: string` |
149
+ | `html-prettifier` | Format and prettify HTML | `html: string`, `indent?: number` |
150
+ | `javascript-prettifier` | Format and prettify JavaScript | `javascript: string`, `indent?: number` |
151
+ | `list-converter` | Convert list formats | `list: string`, `inputFormat: 'comma' \| 'semicolon' \| 'newline' \| 'space' \| 'pipe'`, `outputFormat: 'comma' \| 'semicolon' \| 'newline' \| 'space' \| 'pipe' \| 'json' \| 'quoted'`, `trim?: boolean` |
152
+ | `markdown-toc-generator` | Generate table of contents for Markdown | `markdown: string`, `maxDepth?: number` |
153
+ | `regex-tester` | Test regular expressions | `pattern: string`, `text: string`, `flags?: string` |
154
+ | **Docker Tools** | | |
155
+ | `docker-compose-to-docker-run` | Convert Compose to Docker run command | `compose: string`, `service?: string` |
156
+ | `docker-compose-validator` | Validate Docker Compose YAML | `compose: string` |
157
+ | `docker-reference` | Docker command and syntax reference | `query?: string` |
158
+ | `docker-run-to-docker-compose` | Convert Docker run to Compose | `command: string` |
159
+ | `traefik-compose-generator` | Generate Traefik Docker Compose | `domain: string`, `service: string`, `port?: number`, `network?: string` |
160
+ | **Encoding & Decoding** | | |
161
+ | `base64-decode` | Decode Base64 text | `text: string` |
162
+ | `base64-encode` | Encode text to Base64 | `text: string` |
163
+ | `html-decode` | Decode HTML entities | `text: string` |
164
+ | `html-encode` | Encode HTML entities | `text: string` |
165
+ | `html-entities-extended` | Extended HTML entity encoding/decoding | `text: string`, `operation: 'encode' \| 'decode'` |
166
+ | `text-to-binary` | Convert text to binary and vice versa | `input: string`, `operation: 'encode' \| 'decode'` |
167
+ | `text-to-unicode` | Convert text to Unicode and vice versa | `input: string`, `operation: 'encode' \| 'decode'` |
168
+ | `url-decode` | URL decode text | `text: string` |
169
+ | `url-encode` | URL encode text | `text: string` |
170
+ | **Forensic Tools** | | |
171
+ | `file-type-identifier` | Identify file type from content | `data: string`, `filename?: string` |
172
+ | `safelink-decoder` | Decode Microsoft SafeLinks | `url: string` |
173
+ | `url-fanger` | Fang and defang URLs for analysis | `text: string`, `operation: 'fang' \| 'defang'` |
174
+ | **ID & Code Generators** | | |
175
+ | `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. |
176
+ | `svg-placeholder-generator` | Generate SVG placeholder | `width?: number`, `height?: number`, `text?: string`, `backgroundColor?: string`, `textColor?: string` |
177
+ | `ulid-generate` | Generate ULID | None |
178
+ | `uuid-generate` | Generate UUID v4 | None |
179
+ | **Math & Calculations** | | |
180
+ | `math-evaluate` | Evaluate expressions | `expression: string` |
181
+ | `number-base-converter` | Convert number bases | `number: string`, `fromBase: number`, `toBase: number` |
182
+ | `percentage-calculator` | Calculate percentages | `operation: 'percentage-of' \| 'what-percentage' \| 'percentage-change'`, `value1: number`, `value2: number` |
183
+ | `roman-numeral-converter` | Convert Roman numerals | `input: string` |
184
+ | `temperature-converter` | Convert temperatures | `temperature: number`, `from: 'celsius' \| 'fahrenheit' \| 'kelvin'`, `to: 'celsius' \| 'fahrenheit' \| 'kelvin'` |
185
+ | `unix-timestamp-converter` | Convert timestamps | `input: string` |
186
+ | **Network & System** | | |
187
+ | `cat` | Display file content | `file: string` |
188
+ | `curl` | HTTP client (GET, POST, etc.) | `url: string`, `method?: string`, `headers?: Record<string, string>`, `body?: string` |
189
+ | `dig` | DNS query (custom type) | `target: string`, `type?: string` |
190
+ | `grep` | Search for pattern in file | `file: string`, `pattern: string` |
191
+ | `head` | Show first N lines of file | `file: string`, `lines?: number` |
192
+ | `iban-validate` | Validate IBAN | `iban: string` |
193
+ | `ip-subnet-calculator` | Calculate IPv4 subnet | `ip: string`, `cidr: number` |
194
+ | `ipv4-subnet-calc` | Enhanced IPv4 subnet calc | `cidr: string` |
195
+ | `ipv6-ula-generator` | Generate IPv6 ULA | `globalId?: string` |
196
+ | `mac-address-generate` | Generate MAC address | `prefix?: string`, `separator?: ':' \| '-'` |
197
+ | `nslookup` | DNS lookup (A/AAAA/CNAME) | `target: string` |
198
+ | `ping` | Ping a host | `target: string`, `count?: number` |
199
+ | `ps` | List running processes | None |
200
+ | `random-port` | Generate random ports | `count?: number`, `min?: number`, `max?: number`, `exclude?: number[]` |
201
+ | `scp` | Copy files to/from remote host (SFTP) | `target: string`, `user: string`, `direction: 'upload'\|'download'`, `localPath: string`, `remotePath: string`, `privateKey?: string` |
202
+ | `ssh` | SSH command execution | `target: string`, `user: string`, `command: string` |
203
+ | `tail` | Show last N lines of file | `file: string`, `lines?: number` |
204
+ | `telnet` | Test TCP connectivity | `target: string`, `port: number` |
205
+ | `top` | Show top processes (by CPU) | None |
206
+ | `url-parse` | Parse URL components | `url: string` |
207
+ | **Physics** | | |
208
+ | `angle-converter` | Convert angle units | `value: number`, `from: 'degrees' \| 'radians' \| 'gradians'`, `to: 'degrees' \| 'radians' \| 'gradians'` |
209
+ | `energy-converter` | Convert energy units | `value: number`, `from: 'joules' \| 'calories' \| 'kwh' \| 'btu'`, `to: 'joules' \| 'calories' \| 'kwh' \| 'btu'` |
210
+ | `power-converter` | Convert power units | `value: number`, `from: 'watts' \| 'kilowatts' \| 'horsepower' \| 'btu_per_hour'`, `to: 'watts' \| 'kilowatts' \| 'horsepower' \| 'btu_per_hour'` |
211
+ | **Security & Crypto** | | |
212
+ | `basic-auth-generator` | Generate Basic Auth header | `username: string`, `password: string` |
213
+ | `bcrypt-hash` | Generate/verify bcrypt hash | `password: string`, `rounds?: number`, `hash?: string` |
214
+ | `bip39-generate` | Generate BIP39 mnemonic | `wordCount?: '12' \| '15' \| '18' \| '21' \| '24'` |
215
+ | `hash-md5` | Generate MD5 hash | `text: string` |
216
+ | `hash-sha1` | Generate SHA1 hash | `text: string` |
217
+ | `hash-sha256` | Generate SHA256 hash | `text: string` |
218
+ | `hash-sha512` | Generate SHA512 hash | `text: string` |
219
+ | `hmac-generator` | Generate HMAC | `message: string`, `key: string`, `algorithm?: 'sha1' \| 'sha256' \| 'sha512'` |
220
+ | `jwt-decode` | Decode JWT token | `token: string` |
221
+ | `otp-code-generator` | Generate TOTP codes | `secret: string`, `digits?: number`, `period?: number` |
222
+ | `password-generate` | Generate secure password | `length?: number`, `includeUppercase?: boolean`, `includeLowercase?: boolean`, `includeNumbers?: boolean`, `includeSymbols?: boolean` |
223
+ | `token-generator` | Generate secure token | `length?: number`, `charset?: 'alphanumeric' \| 'hex' \| 'base64' \| 'custom'`, `customChars?: string` |
224
+ | **Text Processing** | | |
225
+ | `ascii-art-text` | Generate ASCII art | `text: string`, `font?: string` (supports 295+ figlet fonts) |
226
+ | `distinct-words` | Extract unique words from text | `text: string`, `caseSensitive?: boolean` |
227
+ | `emoji-search` | Search emojis | `query: string` |
228
+ | `lorem-ipsum-generator` | Generate Lorem Ipsum | `type?: 'words' \| 'sentences' \| 'paragraphs'`, `count?: number` |
229
+ | `numeronym-generator` | Generate numeronyms | `text: string` |
230
+ | `slugify-string` | Convert to URL slug | `text: string`, `separator?: string`, `lowercase?: boolean` |
231
+ | `string-obfuscator` | Obfuscate text | `text: string`, `method?: 'html-entities' \| 'unicode' \| 'base64'` |
232
+ | `text-camelcase` | Convert to camelCase | `text: string` |
233
+ | `text-capitalize` | Capitalize words | `text: string` |
234
+ | `text-diff` | Compare texts | `text1: string`, `text2: string` |
235
+ | `text-kebabcase` | Convert to kebab-case | `text: string` |
236
+ | `text-lowercase` | Convert to lowercase | `text: string` |
237
+ | `text-pascalcase` | Convert to PascalCase | `text: string` |
238
+ | `text-snakecase` | Convert to snake_case | `text: string` |
239
+ | `text-stats` | Get text statistics | `text: string` |
240
+ | `text-to-nato-alphabet` | Convert to NATO alphabet | `text: string` |
241
+ | `text-to-unicode-names` | Convert text to Unicode character names | `text: string` |
242
+ | `text-uppercase` | Convert to uppercase | `text: string` |
243
+ | **Utility Tools** | | |
244
+ | `css-prettifier` | Format and prettify CSS | `css: string`, `indent?: number` |
245
+ | `device-info` | Get system information | None |
246
+ | `email-normalizer` | Normalize email addresses | `email: string` |
247
+ | `http-status-codes` | HTTP status reference | `code?: number` |
248
+ | `mime-types` | Look up MIME types | `input: string`, `lookupType?: 'extension-to-mime' \| 'mime-to-extension'` |
249
+ | `port-numbers` | Look up port number assignments | `port?: number`, `service?: string` |
250
+ | `rem-px-converter` | Convert between REM and PX units | `value: number`, `conversion: 'rem-to-px' \| 'px-to-rem'`, `baseFontSize?: number` |
251
251
 
252
252
  ## 🏗️ Architecture & Development
253
253
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "it-tools-mcp",
3
- "version": "3.2.7",
3
+ "version": "3.2.8",
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",