
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
mehnoor-mcp-server
Advanced tools
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 ```
node --version.cd ../sdk
npm install
cd ../mcp-server
npm install
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.
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]"
}
}
}
}
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]"
}
}
}
}
}
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:
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.
FAQs
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 ```
The npm package mehnoor-mcp-server receives a total of 3 weekly downloads. As such, mehnoor-mcp-server popularity was classified as not popular.
We found that mehnoor-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.