npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

web-development-toolbox-mcp

v0.4.9

Published

Web Development Toolbox MCP Server

Downloads

17

Readme

Web Development Toolbox MCP Server

npm version

MCP (Model Context Protocol) server implementation providing various utility tools for web development.

Setup

Desktop Extension (DXT) - Recommended

The easiest way to install this MCP server is using the Desktop Extension format:

  1. Download the latest .dxt file from the Releases page
  2. Double-click the .dxt file to install with Claude Desktop or other DXT-compatible applications
  3. The extension will be automatically configured and ready to use

Usage with VS Code

Add the following configuration to your User Settings (JSON) file. Open the settings by pressing Cmd + Shift + P and selecting Preferences: Open User Settings (JSON).

Alternatively, you can create a .vscode/mcp.json file in your workspace to share the configuration with others. Note that the mcp key is not needed in the .vscode/mcp.json file.

Note that the mcp key is not needed in the .vscode/mcp.json file.

{
  "mcp": {
    "servers": {
      "web-development-toolbox": {
        "command": "npx", // It might be necessary to specify the full path. In that case, use the result of `which npx`.
        "args": ["-y", "web-development-toolbox-mcp"],
        "env": {}
      }
    }
  }
}

Available Tools

This server provides the following tools:

Encoding & Decoding

  1. encode_base64

    • Encode data to base64 format
    • Inputs:
      • data (string): Input string to encode
    • Returns: Base64 encoded string
  2. decode_base64

    • Decode base64 encoded data
    • Inputs:
      • data (string): Base64 encoded string to decode
    • Returns: Decoded string
  3. decode_jwt

    • Decode a JWT token
    • Inputs:
      • token (string): JWT token string
    • Returns:
      • header: Decoded JWT header (object)
      • payload: Decoded JWT payload (object)
      • signature: JWT signature (string or null)

Color Conversion

  1. hex_to_rgb

    • Convert a hex color code to RGB format
    • Inputs:
      • hex (string): Hexadecimal color code
    • Returns: Object containing RGB values (r, g, b)
  2. rgb_to_hex

    • Convert RGB values to a hex color code
    • Inputs:
      • r (number): Red value (0-255)
      • g (number): Green value (0-255)
      • b (number): Blue value (0-255)
    • Returns: Hexadecimal color code
  3. rgb_to_hsv

    • Convert RGB values to HSV
    • Inputs:
      • r (number): Red value (0-255)
      • g (number): Green value (0-255)
      • b (number): Blue value (0-255)
    • Returns: Object containing HSV values (h, s, v)
  4. hsv_to_rgb

    • Convert HSV values to RGB
    • Inputs:
      • h (number): Hue value (0-360)
      • s (number): Saturation value (0-100)
      • v (number): Value component (0-100)
    • Returns: Object containing RGB values (r, g, b)

Date & Time

  1. unix_to_iso

    • Convert a Unix timestamp to ISO 8601 format
    • Inputs:
      • datetime (number): Unix timestamp
    • Returns: ISO 8601 formatted string
  2. iso_to_unix

    • Convert an ISO 8601 string to Unix timestamp
    • Inputs:
      • isoString (string): ISO 8601 formatted string
    • Returns: Unix timestamp

Image & UUID Generation

  1. generate_qr_code

    • Generate a QR code from a given string
    • Inputs:
      • text (string): Text to encode in the QR code
    • Returns: QR code image (data URL)
  2. generate_uuid

    • Generate UUID v4 and v7
    • Inputs:
      • (no parameters required)
    • Returns: JSON object containing both v4 and v7 UUIDs
      • v4: UUID v4 string
      • v7: UUID v7 string
  3. generate_placeholder_image

    • Generate a placeholder image with specified dimensions
    • Inputs:
      • width (number): Width of the image in pixels
      • height (number): Height of the image in pixels
    • Returns: Placeholder image (data URL)

Example Usage

Check the example-project/prompts directory for example prompts for each tool.

Development

Building the Project

# Install dependencies
npm install

# Build the project
npm run build

Building the Desktop Extension (DXT)

To create a .dxt file for distribution:

# Install dependencies
npm install

# Build the DXT package
npm run build-dxt

This will create a web-development-toolbox-mcp-<version>.dxt file that can be installed with Claude Desktop or other DXT-compatible applications.

License

This project is licensed under the MIT License - see the LICENSE file for details.