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

mehnoor-mcp-server

v1.0.20

Published

1. Install Node.js version 22 or greater. Check version with `node --version`. 2. Open the command line in the current directory. 3. Run these commands in order: ```bash cd ../sdk npm install cd ../mcp-server npm install ```

Readme

User Management APILib MCP Server

How to Build

  1. Install Node.js version 22 or greater. Check version with node --version.
  2. Open the command line in the current directory.
  3. Run these commands in order:
cd ../sdk
npm install
cd ../mcp-server
npm install

How to Run HTTP Server

Make a copy of the .env.example file and name it .env. It should look something like this:

USER_MANAGEMENT_API_LIB_ENVIRONMENT="[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]"
USER_MANAGEMENT_API_LIB_DEFAULT_HOST="[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]"
USER_MANAGEMENT_API_LIB_TIMEOUT="[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]"

Paste in your authentication details in that file.

Now open the command line in the current directory and run npm start. Your server will be hosted on port 3000 by default. You can change the port in the index.ts file.

How to Run Stdio

With Claude Desktop

If you are not familiar with how to setup MCP Servers with Claude Desktop, see this tutorial first.

Now add something like this to your Claude Desktop config:

// claude_desktop_config.json
{
  "mcpServers": {
    "User Management APILib": {
      "command": "node",
      "args": ["[YOUR-PATH-HERE]/mcp-server/dist/index.js"],
      "env": {
        "USER_MANAGEMENT_API_LIB_ENVIRONMENT": "[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]",
        "USER_MANAGEMENT_API_LIB_DEFAULT_HOST": "[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]",
        "USER_MANAGEMENT_API_LIB_TIMEOUT": "[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]"
      }
    }
  }
}

With VS Code

You can also use VS Code to run the MCP Server. The configuration is similar to Claude Desktop. See the official docs for details.

// settings.json
{
  "mcp": {
    "servers": {
      "User Management APILib": {
        "type": "stdio",
        "command": "node",
        "args": ["[YOUR-PATH-HERE]/mcp-server/dist/index.js"],
        "env": {
          "USER_MANAGEMENT_API_LIB_ENVIRONMENT": "[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]",
          "USER_MANAGEMENT_API_LIB_DEFAULT_HOST": "[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]",
          "USER_MANAGEMENT_API_LIB_TIMEOUT": "[YOUR-ENVIRONMENT-VARIABLE-VALUE-HERE]"
        }
      }
    }
  }
}

Important Notes

If any environment variable is omitted, a default value is used instead. If you're not sure what value to configure, it's better to omit it.

Before using the MCP Server, make sure to configure:

  • The absolute path to the location where your MCP Server is stored
  • Any authentication variables

Depending on the size of your API's request schemas, MCP Clients can exceed context limits very quickly. To prevent this, you may need to manually enable/disable the available tools. See here for VS Code. If you get any strange errors, reducing the context this way may fix the problem.