← Back to search

io.github.wrenchpilot/it-tools-mcp

wrenchpilot Scanned 9d ago

MCP server exposing 100+ IT tools and utilities for developers and system administrators.

B
75.8 / 100

Versions

5.10.0latest
first seen Jun 5, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 119

logging_setLevel
annotations: none low

Set the minimum logging level for MCP logging notifications. Available levels: debug, info, notice, warning, error, critical, alert, emergency

level enum
logging_status
annotations: none low

Get current MCP logging configuration and status

system_info
annotations: verified low

Get comprehensive system information, server details, available tool categories, and resource usage. Example: system information, tool categories, installation guide

category string include_tools boolean
readOnlyHint true
evaluate_math
annotations: verified low

Safely evaluate mathematical expressions

expression string
readOnlyHint false
convert_number_base
annotations: verified low

Convert numbers between different bases (binary, octal, decimal, hexadecimal)

number string toBase number fromBase number
readOnlyHint false
convert_unix_timestamp
annotations: verified low

Convert between Unix timestamps and human-readable dates

input string
readOnlyHint false
convert_temperature
annotations: verified low

Convert temperatures between Celsius, Fahrenheit, and Kelvin

to enum from enum temperature number
readOnlyHint false
convert_roman_numerals
annotations: verified low

Convert between Arabic numbers and Roman numerals

input string
readOnlyHint false
calculate_percentage
annotations: verified low

Calculate percentages, percentage of a number, or percentage change

value1 number value2 number operation enum
readOnlyHint false
lookup_mime_types
annotations: verified low

Look up MIME types for file extensions

input string lookupType enum
readOnlyHint true
lookup_http_status
annotations: verified low

Get information about HTTP status codes

code number
readOnlyHint true
normalize_email
annotations: verified low

Normalize email addresses (remove dots, plus aliases, etc.)

email string
readOnlyHint false
convert_rem_px
annotations: verified low

Convert between REM and PX units for CSS. Example: Convert 1.5rem to pixels, or 24px to rem units.

value number fromUnit enum rootFontSize number
readOnlyHint false
show_device_info
annotations: verified low

Get basic device/system information

readOnlyHint true
format_css
annotations: verified low

Format and prettify CSS code

css string indentSize number
readOnlyHint false
lookup_port_numbers
annotations: verified low

Look up common TCP/UDP port numbers and their services

query string
readOnlyHint true
hash_sha256
annotations: verified low

Generate SHA256 hash of input text. Example: "hello" → "2cf24dba4f21d..."

text string
readOnlyHint false
generate_password
annotations: verified low

Generate a secure password

length number includeNumbers boolean includeSymbols boolean includeLowercase boolean includeUppercase boolean
readOnlyHint false
hash_sha512
annotations: verified low

Generate SHA512 hash

text string
readOnlyHint false
decode_jwt
annotations: verified low

Decode JWT token (header and payload only)

token string
readOnlyHint false
generate_bip39
annotations: verified low

Generate BIP39 mnemonic phrases

wordCount enum
readOnlyHint false
generate_otp
annotations: verified low

Generate Time-based One-Time Password (TOTP) codes

digits number period number secret string
readOnlyHint false
hash_sha1
annotations: verified low

Generate SHA1 hash

text string
readOnlyHint false
hash_bcrypt
annotations: verified low

Generate bcrypt hash or verify password against hash

hash string rounds number password string
readOnlyHint false
generate_token
annotations: verified low

Generate secure random tokens

length number charset enum customChars string
readOnlyHint false
generate_basic_auth
annotations: verified low

Generate HTTP Basic Authentication header

password string username string
readOnlyHint false
generate_hmac
annotations: verified low

Generate HMAC (Hash-based Message Authentication Code)

key string message string algorithm enum
readOnlyHint false
hash_md5
annotations: verified low

Generate MD5 hash

text string
readOnlyHint false
convert_text_to_unicode
annotations: verified low

Convert text to Unicode code points and vice versa

input string operation enum
readOnlyHint false
convert_text_to_camelcase
annotations: verified low

Convert text to camelCase format. Example: 'hello world' → 'helloWorld', 'my-variable-name' → 'myVariableName'

text string
readOnlyHint false
convert_text_to_nato
annotations: verified low

Convert text to NATO phonetic alphabet

text string language string
readOnlyHint false
text_snakecase
annotations: verified low

Convert text to snake_case

text string
readOnlyHint false
capitalize_text
annotations: verified low

Capitalize first letter of each word

text string
readOnlyHint false
obfuscate_string
annotations: verified low

Obfuscate text by replacing characters with their HTML entities or other representations

text string method enum
readOnlyHint false
show_unicode_names
annotations: verified low

Convert text to Unicode character names

text string
readOnlyHint true
analyze_distinct_words
annotations: verified low

Count distinct words in text and show their frequency

text string
readOnlyHint true
compare_text
annotations: verified low

Compare two texts and show differences

text1 string text2 string
readOnlyHint false
convert_text_to_pascalcase
annotations: verified low

Convert text to PascalCase

text string
readOnlyHint false
convert_text_to_lowercase
annotations: verified low

Convert text to lowercase

text string
readOnlyHint false
generate_numeronym
annotations: verified low

Generate numeronyms (abbreviations with numbers) from text

text string
readOnlyHint false
convert_text_to_uppercase
annotations: verified low

Convert text to uppercase

text string
readOnlyHint false
generate_ascii_art
annotations: verified low

Generate ASCII art text using figlet fonts. Example: 'Hello' → stylized ASCII text art, supports 295+ fonts

font string text string
readOnlyHint false
search_emoji
annotations: verified low

Search for emojis by name or category

query string
readOnlyHint false
convert_text_to_kebabcase
annotations: verified low

Convert text to kebab-case

text string
readOnlyHint false
analyze_text_stats
annotations: verified low

Get statistics about text (character count, word count, etc.)

text string
readOnlyHint true
slugify_text
annotations: verified low

Convert text to URL-friendly slug format

text string lowercase boolean separator string
readOnlyHint false
generate_lorem_ipsum
annotations: verified low

Generate Lorem Ipsum placeholder text

type enum count number
readOnlyHint false
grep
annotations: verified low

Search for patterns in files

file string pattern string
readOnlyHint false
calculate_ipv4_subnet
annotations: verified low

Calculate IPv4 subnet information

cidr string
readOnlyHint false
generate_random_port
annotations: verified low

Generate random port numbers

max number min number count number exclude array
readOnlyHint false
ps
annotations: verified low

List running processes

readOnlyHint false
convert_cidr_to_ip_range
annotations: verified low

Convert CIDR notation to IP address range

cidr string
readOnlyHint false
scp
annotations: verified low

Copy files to or from a remote host using SFTP (SCP-like)

user string target string direction enum localPath string privateKey string remotePath string
readOnlyHint false
ssh
annotations: verified low

Connect to a target via SSH

user string target string command string privateKey string
readOnlyHint false
cat
annotations: verified low

Display content of a file

file string
readOnlyHint false
tail
annotations: verified low

Display the end of a file

file string lines number
readOnlyHint false
head
annotations: verified low

Display the beginning of a file

file string lines number
readOnlyHint false
parse_url
annotations: verified low

Parse URL into components

url string
readOnlyHint false
top
annotations: verified low

Display system processes (snapshot)

readOnlyHint false
dig
annotations: verified low

Perform DNS lookup with dig command

type string target string
readOnlyHint false
generate_mac_address
annotations: verified low

Generate random MAC address

prefix string separator enum
readOnlyHint false
curl
annotations: verified low

Make HTTP requests to web endpoints. Example: GET request to an API or POST data to a server

url string body string method enum headers record
readOnlyHint false
convert_ip_range_to_cidr
annotations: verified low

Convert IP address range to CIDR notation(s)

endIP string startIP string
readOnlyHint false
ping
annotations: verified low

Test network connectivity to a host. Example: ping google.com to check if it's reachable

count number target string
readOnlyHint false
generate_ipv6_ula
annotations: verified low

Generate IPv6 Unique Local Address (ULA) prefix

globalId string
readOnlyHint false
validate_iban
annotations: verified low

Validate and parse IBAN (International Bank Account Number)

iban string
readOnlyHint false
telnet
annotations: verified low

Test TCP connectivity to a host and port

port number target string
readOnlyHint false
calculate_ip_subnet
annotations: verified low

Calculate subnet information for IPv4

ip string cidr number
readOnlyHint false
calculate_ipv6_subnet
annotations: verified low

Calculate IPv6 subnet information

ipv6 string newPrefix number
readOnlyHint false
nslookup
annotations: verified low

Perform DNS lookup on a hostname or IP address

target string
readOnlyHint false
convert_hex_to_rgb
annotations: verified low

Convert HEX color to RGB

hex string
readOnlyHint false
convert_rgb_to_hex
annotations: verified low

Convert RGB color to HEX

b number g number r number
readOnlyHint false
convert_angle
annotations: verified low

Convert between different angle units

value number toUnit enum fromUnit enum
readOnlyHint false
convert_power
annotations: verified low

Convert between different power units

value number toUnit enum fromUnit enum
readOnlyHint false
convert_energy
annotations: verified low

Convert between different energy units

value number toUnit enum fromUnit enum
readOnlyHint false
compare_json
annotations: verified low

Compare two JSON objects and show differences

json1 string json2 string
readOnlyHint false
minify_json
annotations: verified low

Minify JSON by removing whitespace and unnecessary characters. Example: formatted JSON → compact single-line JSON

json string
readOnlyHint false
convert_toml_to_json
annotations: verified low

Convert TOML to JSON format

toml string
readOnlyHint false
convert_json_to_toml
annotations: verified low

Convert JSON to TOML format

json string
readOnlyHint false
format_xml
annotations: verified low

Format and prettify XML

xml string indent number
readOnlyHint false
convert_markdown_to_html
annotations: verified low

Convert Markdown to HTML

markdown string
readOnlyHint false
format_sql
annotations: verified low

Format and prettify SQL queries

sql string dialect string
readOnlyHint false
format_yaml
annotations: verified low

Format and prettify YAML

yaml string
readOnlyHint false
convert_json_to_csv
annotations: verified low

Convert JSON to CSV format

json string delimiter string
readOnlyHint false
format_phone
annotations: verified low

Parse and format phone numbers

countryCode string phoneNumber string
readOnlyHint false
format_json
annotations: verified low

Format and prettify JSON with proper indentation. Example: {"a":1,"b":2} → formatted JSON with customizable spacing

json string indent number
readOnlyHint false
convert_html_to_markdown
annotations: verified low

Convert HTML to Markdown

html string
readOnlyHint false
validate_ansible_playbook
annotations: verified low

Validate Ansible playbook syntax and structure

playbook string
readOnlyHint false
decrypt_ansible_vault
annotations: verified low

Decrypt Ansible Vault encrypted text

password string encryptedText string
readOnlyHint false
parse_ansible_inventory
annotations: verified low

Parse and validate Ansible inventory files

inventory string
readOnlyHint false
show_ansible_reference
annotations: verified low

Get Ansible commands reference and cheatsheet

readOnlyHint true
encrypt_ansible_vault
annotations: verified low

Encrypt text using Ansible Vault format

text string vaultId string password string
readOnlyHint false
generate_ansible_inventory
annotations: verified low

Parse and validate Ansible inventory files

inventory string
readOnlyHint false
convert_text_to_binary
annotations: verified low

Convert text to binary and vice versa

input string operation enum
readOnlyHint false
decode_base64
annotations: verified low

Decode Base64 text back to original text. Example: "SGVsbG8gV29ybGQ=" → "Hello World"

text string
readOnlyHint false
encode_html
annotations: verified low

Encode HTML entities

text string
readOnlyHint false
decode_html
annotations: verified low

Decode HTML entities

text string
readOnlyHint false
encode_base64
annotations: verified low

Encode text to Base64 format. Example: "Hello World" → "SGVsbG8gV29ybGQ="

text string
readOnlyHint false
encode_html_entities
annotations: verified low

Extended HTML entity encoding/decoding

text string operation enum
readOnlyHint false
decode_url
annotations: verified low

URL decode text

text string
readOnlyHint false
encode_url
annotations: verified low

URL encode text

text string
readOnlyHint false
generate_crontab
annotations: verified low

Generate crontab expressions

hour string month string minute string dayOfWeek string dayOfMonth string
readOnlyHint false
generate_markdown_toc
annotations: verified low

Generate a table of contents from Markdown headers

markdown string maxLevel number generateAnchors boolean
readOnlyHint false
convert_list
annotations: verified low

Convert between different list formats (comma-separated, line-separated, etc.)

list string trim boolean inputFormat enum outputFormat enum
readOnlyHint false
format_javascript
annotations: verified low

Format and beautify JavaScript/CSS code

code string type enum indentSize number
readOnlyHint false
format_html
annotations: verified low

Format and beautify HTML code

html string indentSize number
readOnlyHint false
test_regex
annotations: verified low

Test regular expressions against text

text string flags string pattern string
readOnlyHint false
decode_safelink
annotations: verified low

Decode Microsoft Outlook SafeLink URLs

safelink string
readOnlyHint false
identify_file_type
annotations: verified low

Identify file type based on magic numbers/file signatures

data string format enum
readOnlyHint false
fang_url
annotations: verified low

Defang or refang URLs for safe sharing (security analysis)

text string operation enum
readOnlyHint false
show_docker_reference
annotations: verified low

Get Docker commands reference and cheatsheet

readOnlyHint true
generate_traefik_compose
annotations: verified low

Generate Traefik Docker Compose configuration

email string domain string network string serviceName string serviceImage string
readOnlyHint false
validate_docker_compose
annotations: verified low

Validate Docker Compose files for syntax errors, compatibility issues, and best practices. Example: check YAML syntax, service configuration, network setup

content string
readOnlyHint false
convert_docker_run_to_compose
annotations: verified low

Convert docker run commands to Docker Compose format

commands string
readOnlyHint false
convert_docker_compose_to_run
annotations: verified low

Convert Docker Compose files to docker run commands

content string
readOnlyHint false
generate_qr_code
annotations: verified low

Generate QR code for any text including URLs, WiFi networks, contact info, etc.

size number text string
readOnlyHint false
generate_uuid
annotations: verified low

Generate a universally unique identifier (UUID). Example: generates "550e8400-e29b-41d4-a716-446655440000"

readOnlyHint false
generate_ulid
annotations: verified low

Generate Universally Unique Lexicographically Sortable Identifier (ULID). Example: creates time-sortable unique IDs like '01ARZ3NDEKTSV4RRFFQ69G5FAV'

readOnlyHint false
generate_svg_placeholder
annotations: verified low

Generate SVG placeholder images

text string width number height number textColor string backgroundColor string
readOnlyHint false

Permissions 4

network medium
Server uses network capabilities via: fetch(), net
filesystem low
Server uses filesystem capabilities via: fs, fs sync ops
shell high
Server uses shell capabilities via: child_process, spawn()
env_vars low
Server uses env_vars capabilities via: process.env

Scan Findings 262

info
Tool 'head' annotations are consistent annotation_checker · 80%
info
Tool 'generate_hmac' annotations are consistent annotation_checker · 80%
info
Tool 'hash_md5' annotations are consistent annotation_checker · 80%
low
Tool 'logging_setLevel' has no annotations annotation_checker · 100%
low
Tool 'logging_status' has no annotations annotation_checker · 100%
info
Tool 'system_info' annotations are consistent annotation_checker · 80%
info
Tool 'evaluate_math' annotations are consistent annotation_checker · 80%
info
Tool 'convert_number_base' annotations are consistent annotation_checker · 80%
info
Tool 'convert_unix_timestamp' annotations are consistent annotation_checker · 80%
info
Tool 'convert_temperature' annotations are consistent annotation_checker · 80%
info
Tool 'convert_roman_numerals' annotations are consistent annotation_checker · 80%
info
Tool 'calculate_percentage' annotations are consistent annotation_checker · 80%
info
Tool 'lookup_mime_types' annotations are consistent annotation_checker · 80%
info
Tool 'lookup_http_status' annotations are consistent annotation_checker · 80%
info
Tool 'normalize_email' annotations are consistent annotation_checker · 80%
info
Tool 'convert_rem_px' annotations are consistent annotation_checker · 80%
info
Tool 'show_device_info' annotations are consistent annotation_checker · 80%
info
Tool 'format_css' annotations are consistent annotation_checker · 80%
info
Tool 'lookup_port_numbers' annotations are consistent annotation_checker · 80%
info
Tool 'hash_sha256' annotations are consistent annotation_checker · 80%
info
Tool 'generate_password' annotations are consistent annotation_checker · 80%
info
Tool 'hash_sha512' annotations are consistent annotation_checker · 80%
info
Tool 'decode_jwt' annotations are consistent annotation_checker · 80%
info
Tool 'generate_bip39' annotations are consistent annotation_checker · 80%
info
Tool 'generate_otp' annotations are consistent annotation_checker · 80%
info
Tool 'hash_sha1' annotations are consistent annotation_checker · 80%
info
Tool 'hash_bcrypt' annotations are consistent annotation_checker · 80%
info
Tool 'generate_token' annotations are consistent annotation_checker · 80%
info
Tool 'generate_basic_auth' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_unicode' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_camelcase' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_nato' annotations are consistent annotation_checker · 80%
info
Tool 'text_snakecase' annotations are consistent annotation_checker · 80%
info
Tool 'capitalize_text' annotations are consistent annotation_checker · 80%
info
Tool 'obfuscate_string' annotations are consistent annotation_checker · 80%
info
Tool 'show_unicode_names' annotations are consistent annotation_checker · 80%
info
Tool 'analyze_distinct_words' annotations are consistent annotation_checker · 80%
info
Tool 'compare_text' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_pascalcase' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_lowercase' annotations are consistent annotation_checker · 80%
info
Tool 'generate_numeronym' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_uppercase' annotations are consistent annotation_checker · 80%
info
Tool 'generate_ascii_art' annotations are consistent annotation_checker · 80%
info
Tool 'search_emoji' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_kebabcase' annotations are consistent annotation_checker · 80%
info
Tool 'analyze_text_stats' annotations are consistent annotation_checker · 80%
info
Tool 'slugify_text' annotations are consistent annotation_checker · 80%
info
Tool 'generate_lorem_ipsum' annotations are consistent annotation_checker · 80%
info
Tool 'grep' annotations are consistent annotation_checker · 80%
info
Tool 'calculate_ipv4_subnet' annotations are consistent annotation_checker · 80%
info
Tool 'generate_random_port' annotations are consistent annotation_checker · 80%
info
Tool 'ps' annotations are consistent annotation_checker · 80%
info
Tool 'convert_cidr_to_ip_range' annotations are consistent annotation_checker · 80%
info
Tool 'scp' annotations are consistent annotation_checker · 80%
info
Tool 'ssh' annotations are consistent annotation_checker · 80%
info
Tool 'cat' annotations are consistent annotation_checker · 80%
info
Tool 'tail' annotations are consistent annotation_checker · 80%
info
Tool 'parse_url' annotations are consistent annotation_checker · 80%
info
Tool 'top' annotations are consistent annotation_checker · 80%
info
Tool 'dig' annotations are consistent annotation_checker · 80%
info
Tool 'generate_mac_address' annotations are consistent annotation_checker · 80%
info
Tool 'curl' annotations are consistent annotation_checker · 80%
info
Tool 'convert_ip_range_to_cidr' annotations are consistent annotation_checker · 80%
info
Tool 'ping' annotations are consistent annotation_checker · 80%
info
Tool 'generate_ipv6_ula' annotations are consistent annotation_checker · 80%
info
Tool 'validate_iban' annotations are consistent annotation_checker · 80%
info
Tool 'telnet' annotations are consistent annotation_checker · 80%
info
Tool 'calculate_ip_subnet' annotations are consistent annotation_checker · 80%
info
Tool 'calculate_ipv6_subnet' annotations are consistent annotation_checker · 80%
info
Tool 'nslookup' annotations are consistent annotation_checker · 80%
info
Tool 'convert_hex_to_rgb' annotations are consistent annotation_checker · 80%
info
Tool 'convert_rgb_to_hex' annotations are consistent annotation_checker · 80%
info
Tool 'convert_angle' annotations are consistent annotation_checker · 80%
info
Tool 'convert_power' annotations are consistent annotation_checker · 80%
info
Tool 'convert_energy' annotations are consistent annotation_checker · 80%
info
Tool 'compare_json' annotations are consistent annotation_checker · 80%
info
Tool 'minify_json' annotations are consistent annotation_checker · 80%
info
Tool 'convert_toml_to_json' annotations are consistent annotation_checker · 80%
info
Tool 'convert_json_to_toml' annotations are consistent annotation_checker · 80%
info
Tool 'format_xml' annotations are consistent annotation_checker · 80%
info
Tool 'convert_markdown_to_html' annotations are consistent annotation_checker · 80%
info
Tool 'format_sql' annotations are consistent annotation_checker · 80%
info
Tool 'format_yaml' annotations are consistent annotation_checker · 80%
info
Tool 'convert_json_to_csv' annotations are consistent annotation_checker · 80%
info
Tool 'format_phone' annotations are consistent annotation_checker · 80%
info
Tool 'format_json' annotations are consistent annotation_checker · 80%
info
Tool 'convert_html_to_markdown' annotations are consistent annotation_checker · 80%
info
Tool 'validate_ansible_playbook' annotations are consistent annotation_checker · 80%
info
Tool 'decrypt_ansible_vault' annotations are consistent annotation_checker · 80%
info
Tool 'parse_ansible_inventory' annotations are consistent annotation_checker · 80%
info
Tool 'show_ansible_reference' annotations are consistent annotation_checker · 80%
info
Tool 'encrypt_ansible_vault' annotations are consistent annotation_checker · 80%
info
Tool 'generate_ansible_inventory' annotations are consistent annotation_checker · 80%
info
Tool 'convert_text_to_binary' annotations are consistent annotation_checker · 80%
info
Tool 'decode_base64' annotations are consistent annotation_checker · 80%
info
Tool 'encode_html' annotations are consistent annotation_checker · 80%
info
Tool 'decode_html' annotations are consistent annotation_checker · 80%
info
Tool 'encode_base64' annotations are consistent annotation_checker · 80%
info
Tool 'encode_html_entities' annotations are consistent annotation_checker · 80%
info
Tool 'decode_url' annotations are consistent annotation_checker · 80%
info
Tool 'encode_url' annotations are consistent annotation_checker · 80%
info
Tool 'generate_crontab' annotations are consistent annotation_checker · 80%
info
Tool 'generate_markdown_toc' annotations are consistent annotation_checker · 80%
info
Tool 'convert_list' annotations are consistent annotation_checker · 80%
info
Tool 'format_javascript' annotations are consistent annotation_checker · 80%
info
Tool 'format_html' annotations are consistent annotation_checker · 80%
info
Tool 'test_regex' annotations are consistent annotation_checker · 80%
info
Tool 'decode_safelink' annotations are consistent annotation_checker · 80%
info
Tool 'identify_file_type' annotations are consistent annotation_checker · 80%
info
Tool 'fang_url' annotations are consistent annotation_checker · 80%
info
Tool 'show_docker_reference' annotations are consistent annotation_checker · 80%
info
Tool 'generate_traefik_compose' annotations are consistent annotation_checker · 80%
info
Tool 'validate_docker_compose' annotations are consistent annotation_checker · 80%
info
Tool 'convert_docker_run_to_compose' annotations are consistent annotation_checker · 80%
info
Tool 'convert_docker_compose_to_run' annotations are consistent annotation_checker · 80%
info
Tool 'generate_qr_code' annotations are consistent annotation_checker · 80%
info
Tool 'generate_uuid' annotations are consistent annotation_checker · 80%
info
Tool 'generate_ulid' annotations are consistent annotation_checker · 80%
info
Tool 'generate_svg_placeholder' annotations are consistent annotation_checker · 80%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.24.3 (GHSA-345p-7cg4-v4c7) dependency_analyzer · 95%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.24.3 (GHSA-8r9q-7v3j-jr4g) dependency_analyzer · 95%
medium
Vulnerable dependency: diff@8.0.2 (GHSA-73rr-hh4g-fpgx) dependency_analyzer · 95%
medium
Vulnerable dependency: js-yaml@4.1.0 (GHSA-52cp-r559-cp3m) dependency_analyzer · 95%
medium
Vulnerable dependency: js-yaml@4.1.0 (GHSA-5p4m-2wfm-xmqj) dependency_analyzer · 95%
medium
Vulnerable dependency: js-yaml@4.1.0 (GHSA-h67p-54hq-rp68) dependency_analyzer · 95%
medium
Vulnerable dependency: js-yaml@4.1.0 (GHSA-mh29-5h37-fv8m) dependency_analyzer · 95%
medium
Vulnerable dependency: validator@13.15.20 (GHSA-vghf-hv5q-vc2g) dependency_analyzer · 95%
medium
High-entropy string (5.95 bits/char) in wrenchpilot-it-tools-mcp-16838e5/src/tools/crypto/generate_token/index.ts:36 entropy_analyzer · 54%
medium
High-entropy string (6.00 bits/char) in wrenchpilot-it-tools-mcp-16838e5/src/tools/crypto/generate_token/index.ts:42 entropy_analyzer · 54%
medium
Buffer.from base64 in wrenchpilot-it-tools-mcp-16838e5/src/tools/ansible/decrypt_ansible_vault/index.ts:99 entropy_analyzer · 75%
medium
Buffer.from base64 in wrenchpilot-it-tools-mcp-16838e5/src/tools/encoding/decode_base64/index.ts:19 entropy_analyzer · 75%
medium
Buffer.from base64 in wrenchpilot-it-tools-mcp-16838e5/src/tools/forensic/identify_file_type/index.ts:28 entropy_analyzer · 75%
info
package.json metadata manifest_parser · 100%
info
Tool: logging_setLevel manifest_parser · 85%
info
Tool: logging_status manifest_parser · 85%
info
Tool: system_info manifest_parser · 85%
info
Tool: evaluate_math manifest_parser · 85%
info
Tool: convert_number_base manifest_parser · 85%
info
Tool: convert_unix_timestamp manifest_parser · 85%
info
Tool: convert_temperature manifest_parser · 85%
info
Tool: convert_roman_numerals manifest_parser · 85%
info
Tool: calculate_percentage manifest_parser · 85%
info
Tool: lookup_mime_types manifest_parser · 85%
info
Tool: lookup_http_status manifest_parser · 85%
info
Tool: normalize_email manifest_parser · 85%
info
Tool: convert_rem_px manifest_parser · 85%
info
Tool: show_device_info manifest_parser · 85%
info
Tool: format_css manifest_parser · 85%
info
Tool: lookup_port_numbers manifest_parser · 85%
info
Tool: hash_sha256 manifest_parser · 85%
info
Tool: generate_password manifest_parser · 85%
info
Tool: hash_sha512 manifest_parser · 85%
info
Tool: decode_jwt manifest_parser · 85%
info
Tool: generate_bip39 manifest_parser · 85%
info
Tool: generate_otp manifest_parser · 85%
info
Tool: hash_sha1 manifest_parser · 85%
info
Tool: hash_bcrypt manifest_parser · 85%
info
Tool: generate_token manifest_parser · 85%
info
Tool: generate_basic_auth manifest_parser · 85%
info
Tool: generate_hmac manifest_parser · 85%
info
Tool: hash_md5 manifest_parser · 85%
info
Tool: convert_text_to_unicode manifest_parser · 85%
info
Tool: convert_text_to_camelcase manifest_parser · 85%
info
Tool: convert_text_to_nato manifest_parser · 85%
info
Tool: text_snakecase manifest_parser · 85%
info
Tool: capitalize_text manifest_parser · 85%
info
Tool: obfuscate_string manifest_parser · 85%
info
Tool: show_unicode_names manifest_parser · 85%
info
Tool: analyze_distinct_words manifest_parser · 85%
info
Tool: compare_text manifest_parser · 85%
info
Tool: convert_text_to_pascalcase manifest_parser · 85%
info
Tool: convert_text_to_lowercase manifest_parser · 85%
info
Tool: generate_numeronym manifest_parser · 85%
info
Tool: convert_text_to_uppercase manifest_parser · 85%
info
Tool: generate_ascii_art manifest_parser · 85%
info
Tool: search_emoji manifest_parser · 85%
info
Tool: convert_text_to_kebabcase manifest_parser · 85%
info
Tool: analyze_text_stats manifest_parser · 85%
info
Tool: slugify_text manifest_parser · 85%
info
Tool: generate_lorem_ipsum manifest_parser · 85%
info
Tool: grep manifest_parser · 85%
info
Tool: calculate_ipv4_subnet manifest_parser · 85%
info
Tool: generate_random_port manifest_parser · 85%
info
Tool: ps manifest_parser · 85%
info
Tool: convert_cidr_to_ip_range manifest_parser · 85%
info
Tool: scp manifest_parser · 85%
info
Tool: ssh manifest_parser · 85%
info
Tool: cat manifest_parser · 85%
info
Tool: tail manifest_parser · 85%
info
Tool: head manifest_parser · 85%
info
Tool: parse_url manifest_parser · 85%
info
Tool: top manifest_parser · 85%
info
Tool: dig manifest_parser · 85%
info
Tool: generate_mac_address manifest_parser · 85%
info
Tool: curl manifest_parser · 85%
info
Tool: convert_ip_range_to_cidr manifest_parser · 85%
info
Tool: ping manifest_parser · 85%
info
Tool: generate_ipv6_ula manifest_parser · 85%
info
Tool: validate_iban manifest_parser · 85%
info
Tool: telnet manifest_parser · 85%
info
Tool: calculate_ip_subnet manifest_parser · 85%
info
Tool: calculate_ipv6_subnet manifest_parser · 85%
info
Tool: nslookup manifest_parser · 85%
info
Tool: convert_hex_to_rgb manifest_parser · 85%
info
Tool: convert_rgb_to_hex manifest_parser · 85%
info
Tool: convert_angle manifest_parser · 85%
info
Tool: convert_power manifest_parser · 85%
info
Tool: convert_energy manifest_parser · 85%
info
Tool: compare_json manifest_parser · 85%
info
Tool: minify_json manifest_parser · 85%
info
Tool: convert_toml_to_json manifest_parser · 85%
info
Tool: convert_json_to_toml manifest_parser · 85%
info
Tool: format_xml manifest_parser · 85%
info
Tool: convert_markdown_to_html manifest_parser · 85%
info
Tool: format_sql manifest_parser · 85%
info
Tool: format_yaml manifest_parser · 85%
info
Tool: convert_json_to_csv manifest_parser · 85%
info
Tool: format_phone manifest_parser · 85%
info
Tool: format_json manifest_parser · 85%
info
Tool: convert_html_to_markdown manifest_parser · 85%
info
Tool: validate_ansible_playbook manifest_parser · 85%
info
Tool: decrypt_ansible_vault manifest_parser · 85%
info
Tool: parse_ansible_inventory manifest_parser · 85%
info
Tool: show_ansible_reference manifest_parser · 85%
info
Tool: encrypt_ansible_vault manifest_parser · 85%
info
Tool: generate_ansible_inventory manifest_parser · 85%
info
Tool: convert_text_to_binary manifest_parser · 85%
info
Tool: decode_base64 manifest_parser · 85%
info
Tool: encode_html manifest_parser · 85%
info
Tool: decode_html manifest_parser · 85%
info
Tool: encode_base64 manifest_parser · 85%
info
Tool: encode_html_entities manifest_parser · 85%
info
Tool: decode_url manifest_parser · 85%
info
Tool: encode_url manifest_parser · 85%
info
Tool: generate_crontab manifest_parser · 85%
info
Tool: generate_markdown_toc manifest_parser · 85%
info
Tool: convert_list manifest_parser · 85%
info
Tool: format_javascript manifest_parser · 85%
info
Tool: format_html manifest_parser · 85%
info
Tool: test_regex manifest_parser · 85%
info
Tool: decode_safelink manifest_parser · 85%
info
Tool: identify_file_type manifest_parser · 85%
info
Tool: fang_url manifest_parser · 85%
info
Tool: show_docker_reference manifest_parser · 85%
info
Tool: generate_traefik_compose manifest_parser · 85%
info
Tool: validate_docker_compose manifest_parser · 85%
info
Tool: convert_docker_run_to_compose manifest_parser · 85%
info
Tool: convert_docker_compose_to_run manifest_parser · 85%
info
Tool: generate_qr_code manifest_parser · 85%
info
Tool: generate_uuid manifest_parser · 85%
info
Tool: generate_ulid manifest_parser · 85%
info
Tool: generate_svg_placeholder manifest_parser · 85%
info
Transport: stdio manifest_parser · 90%
info
Required env vars (4) manifest_parser · 80%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
medium
Permission: network access detected permission_analyzer · 90%
low
Permission: filesystem access detected permission_analyzer · 90%
high
Permission: shell access detected permission_analyzer · 95%
low
Permission: env_vars access detected permission_analyzer · 90%
info
SBOM generated: 236 components sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%