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

@kapilraghuwanshi/dev-tools-mcp

v1.3.0

Published

Zero-config MCP server for developers — encode/decode, hash, UUID, JWT, DNS, IP info, URL tracing, npm lookup and more.

Readme

@kapilraghuwanshi/dev-tools-mcp

Zero-config MCP server for developers. No API keys. No secrets. Just plug it in.

22+ tools across encoding, hashing, DNS, IP geolocation, SSL, URL tracing, WHOIS, npm lookups, GitHub, and more.

npm version License: MIT


Quick Start

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "devtools": {
      "command": "npx",
      "args": ["@kapilraghuwanshi/dev-tools-mcp"]
    }
  }
}

Restart Claude Desktop — all tools are immediately available.


Claude Code (CLI)

claude mcp add @kapilraghuwanshi/dev-tools-mcp -- npx @kapilraghuwanshi/dev-tools-mcp

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "devtools": {
      "command": "npx",
      "args": ["@kapilraghuwanshi/dev-tools-mcp"]
    }
  }
}

GitHub Copilot (VS Code)

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "devtools": {
      "type": "stdio",
      "command": "npx",
      "args": ["@kapilraghuwanshi/dev-tools-mcp"]
    }
  }
}

Windsurf

Add to ~/.windsurf/mcp.json:

{
  "mcpServers": {
    "devtools": {
      "command": "npx",
      "args": ["@kapilraghuwanshi/dev-tools-mcp"]
    }
  }
}

Tools

🔵 Compute — offline, instant

| Tool | What it does | |------|-------------| | dt_encode_decode | Base64, URL, HTML encode/decode | | dt_hash_string | MD5, SHA1, SHA256 hashing | | dt_generate_uuid | Generate 1–20 UUID v4s or NanoIDs | | dt_parse_jwt | Decode JWT header + payload (no verification) | | dt_diff_text | Line-by-line diff of two strings | | dt_convert_case | camelCase ↔ snake_case ↔ kebab-case ↔ PascalCase ↔ CONSTANT_CASE | | dt_format_json | Pretty-print or minify JSON | | dt_regex_test | Test a regex pattern, return all matches & groups | | dt_color_convert | HEX ↔ RGB ↔ HSL color conversion | | dt_timestamp_convert | Unix ↔ ISO ↔ UTC + relative time | | dt_url_parse | Break URL into protocol, host, path, params, hash | | dt_generate_password | Secure random password generator | | dt_unit_converter | Convert bytes (KB, MB, GB) and temperature (C, F, K) | | dt_lorem_ipsum | Generate placeholder text (words, sentences, paragraphs) | | dt_format_sql | Basic SQL query formatter |

🌐 Network — public APIs, no auth needed

| Tool | What it does | |------|-------------| | dt_my_ip | Your public IP address | | dt_ip_info | Geo, ISP, ASN, timezone for any IP | | dt_dns_lookup | A, AAAA, CNAME, MX, TXT, NS, SOA records | | dt_http_trace | Follow redirect chain — where does this URL go? | | dt_http_headers | Inspect all HTTP response headers of any URL | | dt_ssl_check | SSL cert expiry, issuer, SANs, days remaining | | dt_port_check | Is TCP port X open on host Y? | | dt_whois_lookup | Domain registration details, expiry, registrar |

📦 Lookup — developer ecosystem

| Tool | What it does | |------|-------------| | dt_npm_info | Package version, downloads, license, deps | | dt_github_repo | Stars, forks, language, topics, license | | dt_gitignore_gen | Generate .gitignore for any stack via gitignore.io | | dt_caniuse | MDN browser compatibility lookup |


Example Prompts

Hash this string with SHA256: "my-secret-key"
Parse this JWT and tell me when it expires
Convert "getUserById" to snake_case
Where does https://bit.ly/3xyz redirect?
Check if port 443 is open on github.com
What's the SSL cert expiry for stripe.com?
Get the npm info for the "zod" package
Generate a .gitignore for node, react, and macos
Look up the MX records for gmail.com
Convert hex color #ff6b6b to HSL
WHOIS lookup for github.com

Requirements

  • Node.js 18+
  • No API keys or configuration needed

☁️ Remote Deployment (SSE)

You can host this server on Render (100% Free Tier).

1. Render.com (Recommended Free Tier)

  1. Fork this repo and connect it to a new Render Web Service.
  2. Set the Root Directory to src/devtools.
  3. Set the Build Command to npm install && npm run build.
  4. Set the Start Command to node dist/index.js.
  5. Add a PORT environment variable: 10000.
  6. Once deployed, connect your client using your Render URL:
"devtools-remote": {
  "type": "sse",
  "url": "https://mcp-servers-161f.onrender.com/sse"
}

Note: Free tier servers "sleep" after 15 mins of inactivity. The first request after a break may take 30s to wake up.

2. Manual SSE Run

PORT=3000 npx @kapilraghuwanshi/dev-tools-mcp

License

MIT © Kapil Raghuwanshi