freshcrate
Skin:/
Home > MCP Servers > it-tools-mcp

it-tools-mcp

A comprehensive Model Context Protocol (MCP) server that provides access to over 100 IT tools and utilities commonly used by developers, system administrators, and IT professionals. Inspired by https:

Why this rank:Recent releaseStrong adoptionHealthy release cadence

Description

A comprehensive Model Context Protocol (MCP) server that provides access to over 100 IT tools and utilities commonly used by developers, system administrators, and IT professionals. Inspired by https://github.com/CorentinTh/it-tools

README

IT Tools MCP Server

CI/CD Pipeline Docker Pulls Docker Image Size NPM Version NPM Downloads GitHub Release License GitHub Issues GitHub Last Commit Docker Platform GitHub Stars📝 Note: A condensed version of this README is automatically synced to Docker Hub due to character limits.

A comprehensive Model Context Protocol (MCP) server that provides access to over 121 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.

Star History

Star History Chart

đŸ“Ļ Installation & Setup

Using with VS Code

Quick Install:

Install in VS CodeInstall in VS Code InsidersInstall:

  1. Open VS Code
  2. Press Ctrl+Shift+P (or Cmd+Shift+P on Mac)
  3. Type "MCP" and select "MCP: Add Server"
  4. Choose "NPM Package" and enter: it-tools-mcp

Or manually add to your VS Code settings.json:

{
  "mcp": {
    "servers": {
      "it-tools": {
        "command": "npx",
        "args": ["it-tools-mcp"],
        "env": {}
      }
    }
  }
}

Docker

{
  "mcp": {
    "servers": {
      "it-tools": {
        "command": "docker",
        "args": [
          "run",
          "-i",
          "--rm",
          "--init",
          "--security-opt", "no-new-privileges:true",
          "--cap-drop", "ALL",
          "--read-only",
          "--user", "1001:1001",
          "--memory=256m",
          "--cpus=0.5",
          "--name", "it-tools-mcp",
          "wrenchpilot/it-tools-mcp:latest"
        ]
      }
  }
}

Interactive Mode

docker run -it --rm wrenchpilot/it-tools-mcp:latest

Programmatic Usage

# Generate a UUID
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"generate_uuid","arguments":{}}}' | \
  docker run -i --rm wrenchpilot/it-tools-mcp:latest

# Encode text to Base64
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"encode_base64","arguments":{"text":"Hello World"}}}' | \
  docker run -i --rm wrenchpilot/it-tools-mcp:latest

īŋŊ MCP Logging Capabilities

This server includes full MCP logging support with the following features:

Log Levels

  • debug (0): Detailed debug information
  • info (1): General information messages
  • notice (2): Normal but significant events
  • warning (3): Warning conditions
  • error (4): Error conditions
  • critical (5): Critical conditions
  • alert (6): Action must be taken immediately
  • emergency (7): System is unusable

Logging Tools

  • logging_setLevel: Change the minimum logging level at runtime
  • logging_status: View current logging configuration and available levels

Environment-Aware Behavior

  • Development Mode: Debug level by default, enhanced console output
  • Production Mode: Info level by default, clean output for MCP compliance
  • Automatic Fallback: Console logging when MCP transport isn't ready

Usage Examples

# Check current logging status
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"logging_status","arguments":{}}}' | npx it-tools-mcp

# Change log level to debug
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"logging_setLevel","arguments":{"level":"debug"}}}' | npx it-tools-mcp

# Change log level to error (only show errors and above)
echo '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"logging_setLevel","arguments":{"level":"error"}}}' | npx it-tools-mcp

🔧 MCP Protocol Utilities

This server implements the complete MCP 2025-06-18 specification including advanced utilities:

Ping Utility

  • Health Checking: Use ping requests to verify connection status
  • Automatic Response: Server responds promptly with empty result per MCP spec
  • Connection Monitoring: Implement periodic health checks

Progress Tracking

  • Long-Running Operations: Receive progress updates for time-consuming tasks
  • Progress Tokens: Include _meta.progressToken in requests to enable progress notifications
  • Notifications: Server sends notifications/progress with current status

Request Cancellation

  • Graceful Cancellation: Send notifications/cancelled to abort in-progress requests
  • Resource Cleanup: Server properly frees resources when requests are cancelled
  • Race Condition Handling: Robust handling of timing edge cases

Sampling Support

  • LLM Integration: Server can request LLM completions from clients using sampling/createMessage
  • Model Preferences: Support for model selection hints and capability priorities (cost, speed, intelligence)
  • Content Types: Support for text, image, and audio content in sampling requests
  • Agentic Workflows: Enable AI-powered tool operations through nested LLM calls
  • Client Control: Clients maintain full control over model access and user approval

Protocol Examples

# Test connection health with ping
echo '{"jsonrpc":"2.0","id":1,"method":"ping"}' | npx it-tools-mcp

# Request with progress tracking
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"some_tool","arguments":{},"_meta":{"progressToken":"track123"}}}' | npx it-tools-mcp

# Cancel a request (send as notification)
echo '{"jsonrpc":"2.0","method":"notifications/cancelled","params":{"requestId":"2","reason":"User cancelled"}}' | npx it-tools-mcp

# Test sampling capabilities
echo '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"mcp_sampling_demo","arguments":{"message":"What is the capital of France?","modelPreference":"claude","systemPrompt":"You are a helpful assistant.","maxTokens":100}}}' | npx it-tools-mcp

# Demo MCP utilities
echo '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"mcp_utilities_demo","arguments":{"operation":"ping"}}}' | npx it-tools-mcp

īŋŊđŸ› ī¸ Tool Categories

This MCP server provides over 121 tools across 14 categories:

  • īŋŊ Ansible Tools (5 tools): Vault encryption/decryption, inventory parser, playbook validator, reference
  • 🎨 Color Tools (2 tools): Hex ↔ RGB conversion
  • 📝 Data Format (12 tools): JSON, XML, YAML, SQL, TOML, Markdown ↔ HTML conversion, phone formatting
  • īŋŊī¸ Development Tools (6 tools): Regex testing, cron generation, list conversion, code prettifiers, markdown TOC
  • đŸŗ Docker Tools (5 tools): Compose validation, conversion tools, Traefik generator, reference
  • 🔧 Encoding & Decoding (8 tools): Base64, URL, HTML entities, text-to-binary
  • 🔍 Forensic Tools (3 tools): File type identification, safelink decoding, URL fanger
  • 🆔 ID & Code Generators (4 tools: UUID, ULID, QR codes, SVG placeholders
  • đŸ”ĸ Math & Calculations (6 tools): Expression evaluation, base conversion, temperature, percentages, Unix timestamps, Roman numerals
  • 🌐 Network & System (23 tools): IPv4/IPv6 subnets, URL parsing, MAC addresses, ps, top, cat, head, tail, grep, ping, nslookup, telnet, dig, ssh, scp, curl, IBAN validation
  • ⚡ Physics (3 tools): Angle, energy, and power unit conversions
  • 🔐 Security & Crypto (12 tools): Hashing (MD5, SHA1, SHA256, SHA512), HMAC, JWT, bcrypt, passwords, tokens, OTP, BIP39
  • ✨ Text Processing (19 tools): Case conversion, stats, diff, ASCII art, NATO alphabet, slugify, Unicode
  • đŸ› ī¸ Utility Tools (7 tools): Email normalization, MIME types, HTTP status codes, device info, CSS prettifier, rem/px converter

📸 Screenshot Examples

Password Hash Generation Example

Password Hash Example

ASCII Art Text Generation Example

ASCII Art Text Example

Examples of using the IT Tools MCP server with VS Code Copilot Chat for secure password hashing and creative ASCII art generation.

Available Tools

Tool Description Parameters
Ansible Tools
parse_ansible_inventory Parse Ansible inventory inventory: string
generate_ansible_inventory Generate Ansible inventory hosts: string[], groups?: Record<string, string[]>, variables?: Record<string, any>
validate_ansible_playbook Validate Ansible playbook YAML playbook: string
show_ansible_reference Ansible syntax and module reference query?: string
decrypt_ansible_vault Decrypt Ansible Vault data data: string, password: string
encrypt_ansible_vault Encrypt data with Ansible Vault data: string, password: string
Color Tools
convert_hex_to_rgb Convert HEX to RGB hex: string
convert_rgb_to_hex Convert RGB to HEX r: number, g: number, b: number
Data Format
convert_html_to_markdown Convert HTML to Markdown html: string
compare_json Compare JSON objects json1: string, json2: string
format_json Format and validate JSON json: string, indent?: number
minify_json Minify JSON json: string
convert_json_to_csv Convert JSON to CSV json: string, delimiter?: string
convert_json_to_toml Convert JSON to TOML json: string
convert_markdown_to_html Convert Markdown to HTML markdown: string
format_phone Parse and format phone numbers phoneNumber: string, countryCode?: string
format_sql Format SQL sql: string, dialect?: 'sql' | 'mysql' | 'postgresql' | 'sqlite' | 'mariadb' | 'db2' | 'plsql' | 'n1ql' | 'redshift' | 'spark' | 'tsql' | 'trino' | 'bigquery' (optional, default: 'sql')
convert_toml_to_json Convert TOML to JSON toml: string
format_xml Format XML xml: string, indent?: number
format_yaml Format YAML yaml: string
Development Tools
generate_crontab Generate cron expressions minute?: string, hour?: string, dayOfMonth?: string, month?: string, dayOfWeek?: string
format_html Format and prettify HTML html: string, indent?: number
format_javascript Format and prettify JavaScript javascript: string, indent?: number
convert_list Convert list formats list: string, inputFormat: 'comma' | 'semicolon' | 'newline' | 'space' | 'pipe', outputFormat: 'comma' | 'semicolon' | 'newline' | 'space' | 'pipe' | 'json' | 'quoted', trim?: boolean
generate_markdown_toc Generate table of contents for Markdown markdown: string, maxDepth?: number
test_regex Test regular expressions pattern: string, text: string, flags?: string
Docker Tools
convert_docker_compose_to_run Convert Compose to Docker run command compose: string, service?: string
validate_docker_compose Validate Docker Compose YAML compose: string
show_docker_reference Docker command and syntax reference query?: string
convert_docker_run_to_compose Convert Docker run to Compose command: string
generate_traefik_compose Generate Traefik Docker Compose domain: string, service: string, port?: number, network?: string
Encoding & Decoding
decode_base64 Decode Base64 text text: string
encode_base64 Encode text to Base64 text: string
decode_html Decode HTML entities text: string
encode_html Encode HTML entities text: string
encode_html_entities Extended HTML entity encoding/decoding text: string, operation: 'encode' | 'decode'
convert_text_to_binary Convert text to binary and vice versa input: string, operation: 'encode' | 'decode'
convert_text_to_unicode Convert text to Unicode and vice versa input: string, operation: 'encode' | 'decode'
decode_url URL decode text text: string
encode_url URL encode text text: string
Forensic Tools
identify_file_type Identify file type from content data: string, filename?: string
decode_safelink Decode Microsoft SafeLinks url: string
fang_url Fang and defang URLs for analysis text: string, operation: 'fang' | 'defang'
ID & Code Generators
generate_qr_code Generate QR codes for any content text: string, size?: number - Supports URLs, WiFi (WIFI:T:WPA;S:network;P:password;;), contact info, etc.
generate_svg_placeholder Generate SVG placeholder width?: number, height?: number, text?: string, backgroundColor?: string, textColor?: string
generate_ulid Generate ULID None
generate_uuid Generate UUID v4 None
Math & Calculations
evaluate_math Evaluate expressions expression: string
convert_number_base Convert number bases number: string, fromBase: number, toBase: number
calculate_percentage Calculate percentages operation: 'percentage-of' | 'what-percentage' | 'percentage-change', value1: number, value2: number
convert_roman_numerals Convert Roman numerals input: string
convert_temperature Convert temperatures temperature: number, from: 'celsius' | 'fahrenheit' | 'kelvin', to: 'celsius' | 'fahrenheit' | 'kelvin'
convert_unix_timestamp Convert timestamps input: string
Network & System
cat Display file content file: string
curl HTTP client (GET, POST, etc.) url: string, method?: string, headers?: Record<string, string>, body?: string
dig DNS query (custom type) target: string, type?: string
grep Search for pattern in file file: string, pattern: string
head Show first N lines of file file: string, lines?: number
validate_iban Validate IBAN iban: string
calculate_ip_subnet Calculate IPv4 subnet ip: string, cidr: number
calculate_ipv4_subnet Enhanced IPv4 subnet calc cidr: string
generate_ipv6_ula Generate IPv6 ULA globalId?: string
generate_mac_address Generate MAC address prefix?: string, separator?: ':' | '-'
nslookup DNS lookup (A/AAAA/CNAME) target: string
ping Ping a host target: string, count?: number
ps List running processes None
generate_random_port Generate random ports count?: number, min?: number, max?: number, exclude?: number[]
scp Copy files to/from remote host (SFTP) target: string, user: string, direction: 'upload'|'download', localPath: string, remotePath: string, privateKey?: string
ssh SSH command execution target: string, user: string, command: string
tail Show last N lines of file file: string, lines?: number
telnet Test TCP connectivity target: string, port: number
top Show top processes (by CPU) None
parse_url Parse URL components url: string
Physics
convert_angle Convert angle units value: number, from: 'degrees' | 'radians' | 'gradians', to: 'degrees' | 'radians' | 'gradians'
convert_energy Convert energy units value: number, from: 'joules' | 'calories' | 'kwh' | 'btu', to: 'joules' | 'calories' | 'kwh' | 'btu'
convert_power Convert power units value: number, from: 'watts' | 'kilowatts' | 'horsepower' | 'btu_per_hour', to: 'watts' | 'kilowatts' | 'horsepower' | 'btu_per_hour'
Security & Crypto
generate_basic_auth Generate Basic Auth header username: string, password: string
hash_bcrypt Generate/verify bcrypt hash password: string, rounds?: number, hash?: string
generate_bip39 Generate BIP39 mnemonic wordCount?: '12' | '15' | '18' | '21' | '24'
hash_md5 Generate MD5 hash text: string
hash_sha1 Generate SHA1 hash text: string
hash_sha256 Generate SHA256 hash text: string
hash_sha512 Generate SHA512 hash text: string
generate_hmac Generate HMAC message: string, key: string, algorithm?: 'sha1' | 'sha256' | 'sha512'
decode_jwt Decode JWT token token: string
generate_otp Generate TOTP codes secret: string, digits?: number, period?: number
generate_password Generate secure password length?: number, includeUppercase?: boolean, includeLowercase?: boolean, includeNumbers?: boolean, includeSymbols?: boolean
generate_token Generate secure token length?: number, charset?: 'alphanumeric' | 'hex' | 'base64' | 'custom', customChars?: string
Text Processing
generate_ascii_art Generate ASCII art text: string, font?: string (supports 295+ figlet fonts)
analyze_distinct_words Extract unique words from text text: string, caseSensitive?: boolean
search_emoji Search emojis query: string
generate_lorem_ipsum Generate Lorem Ipsum type?: 'words' | 'sentences' | 'paragraphs', count?: number
generate_numeronym Generate numeronyms text: string
slugify_text Convert to URL slug text: string, separator?: string, lowercase?: boolean
obfuscate_string Obfuscate text text: string, method?: 'html-entities' | 'unicode' | 'base64'
convert_to_camelcase Convert to camelCase text: string
capitalize_text Capitalize words text: string
compare_text Compare texts text1: string, text2: string
convert_text_to_kebabcase Convert to kebab-case text: string
convert_text_to_lowercase Convert to lowercase text: string
convert_text_to_pascalcase Convert to PascalCase text: string
text_snakecase Convert to snake_case text: string
analyze_text_stats Get text statistics text: string
convert_text_to_nato Convert to NATO alphabet text: string
show_unicode_names Convert text to Unicode character names text: string
convert_text_to_uppercase Convert to uppercase text: string
Utility Tools
format_css Format and prettify CSS css: string, indent?: number
show_device_info Get system information None
normalize_email Normalize email addresses email: string
lookup_http_status HTTP status reference code?: number
lookup_mime_types Look up MIME types input: string, lookupType?: 'extension-to-mime' | 'mime-to-extension'
lookup_port_numbers Look up port number assignments port?: number, service?: string
convert_rem_px Convert between REM and PX units value: number, conversion: 'rem-to-px' | 'px-to-rem', baseFontSize?: number

đŸ—ī¸ Architecture & Development

Built with TypeScript, Zod validation, and MCP SDK for robust, type-safe operation.

🤖 AI-Assisted Development

This project was developed using VS Code, Copilot Chat Agent, Playwright MCP, and the Claude Sonnet 4 Model, demonstrating the power of AI-assisted software development:

  • Intelligent Code Generation: Claude Sonnet analyzed requirements and generated comprehensive tool implementations
  • Schema Validation: Automatically identified and resolved JSON schema validation issues across tools
  • Docker Optimization: Created production-ready Docker workflows and multi-stage builds
  • Documentation: Generated comprehensive README with examples and tool reference tables
  • Testing: Implemented robust error handling and validation throughout the codebase

Key AI Contributions:

  • 🔧 Tool Implementation: All tools designed and implemented with AI assistance
  • đŸ“Ļ Docker Setup: Complete containerization with GitHub Actions CI/CD pipeline
  • 🔍 Schema Cleanup: Systematic removal of unsupported Zod keywords from all tool definitions
  • 📚 Documentation: Comprehensive README with usage examples and tool catalogs
  • 🚀 Production Ready: Docker Hub publishing, badges, and professional deployment setup

This showcases how AI can accelerate development while maintaining code quality, proper architecture, and comprehensive testing.

Adding New Tools

  1. Create a tool directory in appropriate category under src/tools/
  2. Define tool with input schema using Zod in its index.ts
  3. Export registration function for dynamic loading
  4. Rebuild with npm run build

Project Structure

src/
├── index.ts              # Main MCP server with dynamic tool loading
└── tools/                # Modular tool categories
    ├── ansible/          # 5 Ansible automation tools
    ├── color/            # 2 Color conversion tools
    ├── crypto/           # 9 Cryptographic & security tools
    ├── dataFormat/       # 12 Data format conversion tools
    ├── development/      # 6 Development utilities
    ├── docker/           # 5 Docker & containerization tools
    ├── encoding/         # 8 Encoding/decoding tools
    ├── forensic/         # 3 Digital forensics tools
    ├── idGenerators/     # 4 ID & code generation tools
    ├── math/             # 6 Mathematical operation tools
    ├── network/          # 23 Network utilities
    ├── physics/          # 3 Physics calculation tools
    ├── text/             # 19 Text manipulation tools
    └── utility/          # 7 General utility tools

🤝 Contributing

Contributions are welcome! Please follow the guidelines below:

Commit Message Format

This project uses Conventional Commits for clear, consistent commit messages.

Version Management:

  • 🤖 Automatic version bumping - Git hooks automatically bump versions based on commit message types
  • 🤖 Automatic publishing - CI/CD detects changes and publishes automatically
  • đŸˇī¸ Git tags - Created automatically based on conventional commit messages

Examples:

git commit -m "feat: add new encryption tool"    # → minor version bump
git commit -m "fix: resolve base64 decoding issue"  # → patch version bump
git commit -m "docs: improve README examples"   # → patch version bump
git commit -m "feat!: breaking API change"      # → major version bump

# Version is automatically bumped and committed by git hooks
# No manual npm version commands needed!
git push

📖 See COMMIT_TEMPLATE_SETUP.md for setup instructions.

Development Process

  1. Fork the repository
  2. Run ./setup-commit-template.sh (recommended)
  3. Create a feature branch
  4. Make your changes following the project structure
  5. Use conventional commit messages
  6. Submit a Pull Request

The CI/CD pipeline will automatically:

  • ✅ Build and test your changes
  • đŸˇī¸ Bump version based on commit messages (on merge to main)
  • đŸ“Ļ Publish to Docker Hub and NPM
  • 🚀 Create GitHub releases

📄 License

MIT License - see LICENSE for details.

🔗 Related

Inspired by IT Tools - online tools for developers.

This project incorporates select tools from the @sharevb fork which extends IT Tools with additional utilities and enhancements.

Release History

VersionChangesUrgencyDate
v5.10.8## Changes since v5.10.7 - fix: update fast-uri, hono, ip-address (d895bec) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_InsHigh5/15/2026
v5.10.7## Changes since v5.10.6 - fix: update mathjs v15.2.0, update version to 5.10.7 in manifest, package.json, package-lock.json, and server.json (d39583f) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%High4/15/2026
v5.10.6## Changes since v5.10.5 - fix: update version to 5.10.6 in manifest, package.json, package-lock.json, and server.json (a2325d6) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS CoHigh4/8/2026
v5.10.5## Changes since v5.10.4 - chore(deps): npm update; update version to 5.10.5 in manifest, package.json, package-lock.json, and server.json (e580bbf) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D)Medium3/28/2026
v5.10.4## Changes since v5.10.3 - fix: update version to 5.10.4 in manifest, package.json, package-lock.json, and server.json (f340aef) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS CoMedium3/25/2026
v5.10.3## Changes since v5.10.2 - fix: update npm package dependencies, update version to 5.10.3 (6a5c25b) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code Insiders](https://img.shieLow3/6/2026
v5.10.2## Changes since v5.10.1 - fix: update version to 5.10.2 in manifest, package.json, package-lock.json, and server.json (2bf869d) - chore(deps): bump @modelcontextprotocol/sdk (fc45b58) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22arLow2/6/2026
v5.10.1## Changes since v5.10.0 - fix: bump npm versions, update version to 5.10.1 in manifest, package.json, and server.json (7f221ee) - revert: comment out mcp-publish job in main.yml to disable publishing process [skip ci] (7766e5d) - fix: revert version to 5.10.0 in package.json and package-lock.json; update server.json identifier format [skip ci] (ecc6dc0) - fix: server.json [skip ci] (da7d563) - Merge pull request #30 from wrenchpilot:mcp-fix (8c4c12c) - revert: clean up server.json by removingLow1/27/2026
v5.10.0## Changes since v5.9.0 - Merge pull request #28 from wrenchpilot:mcp-publisher-workflow (d8249bc) - Merge remote-tracking branch 'origin/master' into mcp-publisher-workflow (21da3fe) - feat: update MCP Publisher download logic to use a fixed version and improve error handling (fa24b86) - Merge pull request #27 from wrenchpilot:mcp-publisher-workflow (9816e52) - Merge remote-tracking branch 'origin/master' into mcp-publisher-workflow (b2f24e8) - feat: enhance Dockerfile and package.json to ensuLow1/19/2026
v5.9.0## Changes since v5.8.18 - Merge pull request #26 from wrenchpilot:mcp-publisher-workflow (e5c278f) - feat: enhance pre-commit hook to validate version sync between package.json, mcp-manifest.json, and server.json (9b136f1) - feat: enhance pre-commit hook to validate version sync between package.json, mcp-manifest.json, and server.json (ef3f458) - feat: refactor mcp-publish job to install and publish using official MCP Publisher (d403a8a) ## Installation & Setup ### Quick Install with VS Code Low1/19/2026
v5.8.18## Changes since v5.8.17 - Merge pull request #25 from wrenchpilot:fix-mcp-publish-workflwo (fa9b833) - fix: update version to 5.8.18 in mcp-manifest.json, package.json, package-lock.json, server.json, and main.yml (2d64ed7) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-toolLow1/18/2026
v5.8.17## Changes since v5.8.14 - Merge pull request #24 from wrenchpilot:mcp-publish (8ee71dc) - Merge remote-tracking branch 'origin/master' into mcp-publish (3be913e) - fix: update version to 5.8.16 in mcp-manifest.json and server.json (4db752f) - fix: update MCP Publisher installation URL to use the correct repository (16a144f) - docs: update MCP Publisher version to v1.0.0 and improve error handling during installation [skip ci] (cbf4b34) ## Installation & Setup ### Quick Install with VS Code [Low1/18/2026
v5.8.14## Changes since v5.8.13 - Merge pull request #23 from wrenchpilot:mcp-publish (3c34c0e) - refactor: update version to 5.8.14; add MCP annotations and OCI support (c321052) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%Low1/18/2026
v5.8.13## Changes since v5.8.11 - Merge pull request #22 from wrenchpilot:icons (decee35) - chore(deps): update @types/node, cron-parser, and sql-formatter to latest versions (9b0b8a1) - docs: update server.json to include icon details (e8f69a5) - docs: add icons [skip cli] (20c5d43) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirLow1/18/2026
v5.8.11## Changes since v5.8.8 - chore(deps): bump npm versions (npm update), bump package version 5.8.11 (59ca9e7) - docs: add star history chart to README.dockerhub.md [skip ci] (40979d2) - docs: add star history section to README.md [skip ci] (3557169) - chore: revert version to 5.8.8 in mcp-manifest.json, package.json, and server.json [skip ci] (01d1dac) - chore: fix version to 5.8.8 in server.json [skip ci] (89d3ae7) - chore: update schema version and clean up server.json configuration [skip ci] Low1/14/2026
v5.8.8## Changes since v5.8.7 - Merge pull request #20 from wrenchpilot:dependabot/npm_and_yarn/npm_and_yarn-1719578bf6 (05448de) - chore: bump @modelcontextprotocol/sdk from 1.25.1 to 1.25.2 in the npm_and_yarn group across 1 directory (e22e5d4) - chore(deps): bump @modelcontextprotocol/sdk (04e8b71) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](httpsLow1/7/2026
v5.8.7## Changes since v5.8.6 - feat: bump version to 5.8.7 across manifest files and update CLI argument parsing (9354429) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code InsidersLow1/7/2026
v5.8.6## Changes since v5.8.5 - Merge pull request #19 from wrenchpilot/restore-original-descriptions (37886a8) - fix: add descriptions back (76f6903) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Low1/7/2026
v5.8.5## Changes since v5.8.3 - fix: update MCP server capabilities to comply with VS Code standards (ad5a63a) - fix: update package deps (18bf4e0) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![InsLow1/7/2026
v5.8.3## Changes since v5.8.2 - fix: bump qs from 6.14.0 to 6.14.1 in the npm_and_yarn, bump patch version to 5.8.3 (89afd0e) - Merge pull request #18 from wrenchpilot/dependabot/npm_and_yarn/npm_and_yarn-2b901f0e0d (7d7cf77) - chore(deps): bump qs in the npm_and_yarn group across 1 directory (8fc58ae) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](httpLow1/6/2026
v5.8.2## Changes since v5.7.3 - fix: enhance pre-commit hook and sync logic for server.json alongside mcp-manifest.json (d68918f) - fix: use sudo for npm installation to ensure OIDC support [skip ci] (d81155f) - feat: diag oidc [skip ci] (2f4fe1e) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22namLow12/15/2025
v5.7.3## Changes since v5.7.2 - chore: install pre-commit hook to sync mcp-manifest.json with package.json (82cca87) - chore: update version to 5.7.2 in mcp-manifest.json (3629bd3) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5Low12/15/2025
v5.7.2## Changes since v5.7.1 - fix(ci): enhance npm auth clearing process to ensure OIDC compatibility (e6e9047) - refactor: replace sync-version workflow with pre-commit hook and update sync script to use ES modules (2cc8115) - chore(sync): sync mcp-manifest.json version with package.json [skip ci] (053b246) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=whitLow12/15/2025
v5.7.1## Changes since v5.7.0 - fix(ci): enhance npm setup for OIDC support and clear auth tokens (5c20a69) - fix(ci): add write permissions for sync-version job (799a939) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-toLow12/15/2025
v5.7.0## Changes since v5.6.0 - fix(ci): clear npm auth tokens to enable OIDC before publishing (6133bef) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code Insiders](https://img.shieLow12/15/2025
v5.6.0## Changes since v5.3.0 - feat: update version to 5.4.0 in mcp-manifest.json (62e039a) - feat(ci): update Node.js setup for publish with OIDC support and install dependencies (56a40a4) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22arLow12/15/2025
v5.3.0## Changes since v5.2.9 - feat: update version to 5.3.0 in package.json and mcp-manifest.json; add sync script for version management (2f4bc28) - feat(mcp): migrate to MCP spec 2025-11-25 (00b48a8) - Merge pull request #16 from wrenchpilot:dependabot/npm_and_yarn/npm_and_yarn-21a4bf3b45 (70e97cf) - chore(deps): bump express in the npm_and_yarn group across 1 directory (8a4e70b) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-ILow12/15/2025
v5.2.9## Changes since v5.2.8 - Merge pull request #15 from wrenchpilot/wrenchpilot/issue14 (43cc278) - fix: [Bug] Path resolution error on Windows: duplicate drive letter (C:\C:\...) Fixes #14 (49eba99) - Merge pull request #12 from wrenchpilot/dependabot/npm_and_yarn/npm_and_yarn-3c67cbb9cd (955da54) - chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (a08e1a1) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-ILow11/29/2025
v5.2.8## Changes since v5.2.7 - feat: add server.json configuration file and update version to 5.2.8 in mcp-manifest.json and package.json; enhance .gitignore for new tokens (ad95927) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3Low10/28/2025
v5.2.7## Changes since v5.2.6 - fix: improve response structure and logging for QR code generation, prep for vscode mcp server gallery (1a87b21) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![InstalLow10/28/2025
v5.2.6## Changes since v5.2.5 - fix: update version to 5.2.6 in mcp-manifest.json and package.json (051135a) - feat(logging): add spec-compliant logging/setLevel handler and emit notifications/message from mcpLog (8292d95) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%Low10/27/2025
v5.2.5## Changes since v5.2.4 - Merge pull request #10 from wrenchpilot:alert-autofix-6 (20d3fae) - fix: update version to 5.2.5 in mcp-manifest.json and package.json (a868733) - fix: update version to 5.2.4 in mcp-manifest.json (6af2e8b) - Potential fix for code scanning alert no. 6: Insecure randomness (3f0dfbf) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=Low10/27/2025
v5.2.4## Changes since v5.2.3 - fix: update version to 5.2.4 in package-lock.json (0fbf11f) - fix: update version to 5.2.4 in package.json (53146fe) - Merge pull request #9 from wrenchpilot/security-fixes (d4fe837) - fix: standardize formatting in docker-compose.yml for consistency (3e12eed) - fix: improve production dependency installation logic in Dockerfile for better reproducibility (3383f5e) - fix: update Dockerfile and docker-compose.yml for improved dependency installation and image configuratLow10/27/2025
v5.2.3## Changes since v5.2.2 - Merge pull request #7 from wrenchpilot/security-fixes (edb952c) - fix: improve regex for tool extraction and enhance HTML decoding order in multiple tools (f05afc2) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2Low8/6/2025
v5.2.2## Changes since v5.2.1 - fix: add missing permissions for security-events in CI job (1cc6261) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code Insiders](https://img.shields.iLow8/6/2025
v5.2.1## Changes since v5.0.4 - fix: add missing permissions for security-events in CI job (beb894b) - chore: update actions/cache and actions/upload-artifact to v4 (1b94c0d) - feat: enhance CI/CD workflow with conditional dependency review and artifact uploads (1f756f4) - chore: update CI/CD pipeline configuration and remove obsolete files (b313ccd) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-sqLow8/6/2025
v5.0.4## Changes since v5.0.3 - feat: add Homebrew release packaging script (968b4ca) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code Insiders](https://img.shields.io/badge/VS_CodeLow8/2/2025
v5.0.3## Changes since v5.0.1 - fix: add .vscode/mcp.json to .gitignore (de29d0d) - fix: add GitHub-related files to .gitignore (3ce4411) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VSLow8/2/2025
v5.0.1## Changes since v5.0.0 - fix: enhance release notes for VS Code installation with quick install options and badges (6361756) ## Installation & Setup ### Quick Install with VS Code [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22it-tools%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22it-tools-mcp%22%5D%7D) [![Install in VS Code Low7/26/2025
v5.0.0## Changes since v4.1.15 - fix: increment version in mcp-manifest.json to 4.1.15; remove demo tools from index.ts (0933e2a) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "dockeLow7/26/2025
v4.1.15## Changes since v4.1.14 - BREAKING CHANGE: Upgraded from MCP protocol 2024-11-05 to 2025-06-18 specification (63f9112) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "docker", Low7/26/2025
v4.1.14## Changes since v4.1.13 - fix: update Dockerfile build command and increment version in mcp-manifest.json (ac96727) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "docker", Low7/25/2025
v4.1.13## Changes since v4.1.12 - fix: update version in mcp-manifest.json to 4.1.12 (7f3767e) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "docker", "args": [ "runLow7/25/2025
v4.1.12## Changes since v4.1.11 - fix: update mcp-manifest.json version and description; enhance build script in package.json (5941486) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "Low7/25/2025
v4.1.11## Changes since v4.1.9 - fix: Remove unused imports across various tools (bedf60b) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "docker", "args": [ "run", Low7/25/2025
v4.1.9## Changes since v4.1.8 - fix: update version in mcp-manifest.json and add conditional logging for tool loading in development mode (57742e2) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { Low7/25/2025
v4.1.8## Changes since v4.1.2 - fix: add error handling for tool registration and unhandled promise rejections (ca32c68) - chore: add manifest sync script and pre-commit hook (0fded74) - chore: sync mcp-manifest.json version with package.json (5940695) - chore: test pre-commit hook sync functionality (fdd82f6) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "arLow7/25/2025
v4.1.2## Changes since v4.1.1 - fix: update XML formatter import to resolve NodeNext module issues (59500e9) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "docker", "args": [Low7/25/2025
v4.1.1## Changes since v4.0.0 - fix: implement text_snakecase tool for converting text to snake_case (22e7229) - fix: add server startup logic for direct execution of index.ts (d34daee) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "sLow7/25/2025
v4.0.0## Changes since v3.6.0 - feat: update README and package metadata to reflect 116 IT tools; add server manifest resource (37b9d68) - BREAKING CHANGE: MCP Server compliance (b559c2b) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { Low7/25/2025
v3.6.0## Changes since v3.2.12 - refactor: consolidate system-info and server-info tools (e82218b) ## Installation & Setup ### Using with VS Code Add to your VS Code `settings.json`: #### Node ```json { "mcp": { "servers": { "it-tools": { "command": "npx", "args": [ "it-tools-mcp" ], "env": {} } } } } ``` #### Docker ```json { "mcp": { "servers": { "it-tools": { "command": "docker", "args": [ Low7/25/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

exa-mcp-serverExa MCP for web search and web crawling!main@2026-06-04
spaceship-mcp🚀 Manage domains, DNS, contacts, and listings with spaceship-mcp, a community-built MCP server for the Spaceship API.main@2026-06-02
XcodeBuildMCPA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.v2.6.0
MediaWiki-MCP-ServerModel Context Protocol (MCP) Server to connect your AI with any MediaWikiv0.10.0
MeiGen-AI-Design-MCPMeiGen-AI-Design-MCP — Turn Claude Code / OpenClaw into your local Lovart. Local ComfyUI, 1,400+ prompt library, multi-direction parallel generation.v1.3.2

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme