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

trim-dev-tools-mcp

v1.0.0

Published

Developer utility tools for AI agents via MCP. JSON formatting, base64, hashing, UUID generation, regex testing, URL encoding, and more.

Readme

trim-dev-tools-mcp

Developer utility tools for AI agents, via the Model Context Protocol.

13 tools that AI coding agents actually need during development tasks.

Tools

| Tool | Description | |------|-------------| | json_format | Format, minify, or validate JSON | | base64 | Encode or decode Base64 | | hash | MD5, SHA-1, SHA-256, SHA-512 hashing | | uuid | Generate UUIDs (v4), single or batch | | url_encode | URL encode/decode strings | | regex_test | Test patterns with match positions and groups | | epoch | Convert timestamps, get current time | | color_convert | Convert between HEX, RGB, HSL | | password | Generate cryptographically secure passwords | | jwt_decode | Decode JWT tokens (header + payload) | | word_count | Words, chars, sentences, reading time | | cron_parse | Parse cron expressions to plain English | | lorem_ipsum | Generate placeholder text |

Install

npm install -g trim-dev-tools-mcp

Configure

Claude Desktop

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "trim-dev-tools": {
      "command": "npx",
      "args": ["-y", "trim-dev-tools-mcp"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "trim-dev-tools": {
      "command": "npx",
      "args": ["-y", "trim-dev-tools-mcp"]
    }
  }
}

OpenClaw / Other Agents

Any MCP-compatible agent can connect via stdio transport:

npx trim-dev-tools-mcp

Examples

An AI agent can call these tools directly:

> json_format({ input: '{"name":"trim","v":1}', action: "format", indent: 2 })

{
  "name": "trim",
  "v": 1
}
> hash({ input: "hello world", algorithm: "sha256" })

b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9
> regex_test({ pattern: "\\d{3}-\\d{4}", flags: "g", input: "Call 555-1234 or 555-5678" })

{
  "matchCount": 2,
  "matches": [
    { "match": "555-1234", "index": 5 },
    { "match": "555-5678", "index": 17 }
  ]
}

Built by

Trim -- free developer tools that run in your browser.

License

MIT