btwiuse_npm-search-mcp-server

MCP.Pizza Chef: MCP-Mirror

The btwiuse_npm-search-mcp-server is a Model Context Protocol server that facilitates searching for npm packages by executing the `npm search` command. It exposes a tool called `search_npm_packages` which accepts a search query string and returns relevant npm package results. This server integrates seamlessly with AI models and clients, allowing them to access up-to-date npm package information in real time. Installation is straightforward via npm or Smithery, making it easy to add npm package search capabilities to AI-enhanced development environments or automation workflows.

Use This MCP server To

Search npm packages directly from AI-powered IDEs Integrate npm package discovery into chatbot assistants Automate npm package lookup in CI/CD pipelines Enable real-time package recommendations in coding copilots Fetch npm package info for dependency analysis tools

README

npm-search MCP Server

smithery badge

A Model Context Protocol server that allows you to search for npm packages by calling the npm search command.

npm-search-mcp-server MCP server

Available Tools

  • search_npm_packages - Search for npm packages.
    • Required arguments:
      • query (string): The search query.

Claude Screenshot

Installation

Installing via Smithery

To install npm-search for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install npm-search-mcp-server --client claude

Using NPM (recommended)

Alternatively you can install npm-search-mcp-server via npm:

npm install -g npm-search-mcp-server

After installation, you can run it as a command using:

npm-search-mcp-server

Using uv

When using uv no specific installation is needed. We will use uvx to directly run npm-search-mcp-server.

Configuration

Configure for Claude.app

Add to your Claude settings:

Using npm installation
"mcpServers": {
  "npm-search": {
    "command": "npx",
    "args": ["-y", "npm-search-mcp-server"]
  }
}
Using uvx
"mcpServers": {
  "npm-search": {
    "command": "uvx",
    "args": ["npm-search-mcp-server"]
  }
}

Configure for Zed

Add to your Zed settings.json:

Using npm installation
"context_servers": {
  "npm-search-mcp-server": {
    "command": "npx",
    "args": ["-y", "npm-search-mcp-server"]
  }
},
Using uvx
"context_servers": [
  "npm-search-mcp-server": {
    "command": "uvx",
    "args": ["npm-search-mcp-server"]
  }
],

Example Interactions

  1. Search for npm packages:
{
  "name": "search_npm_packages",
  "arguments": {
    "query": "express"
  }
}

Response:

{
  "results": [
    {
      "name": "express",
      "description": "Fast, unopinionated, minimalist web framework",
      "version": "4.17.1",
      "author": "TJ Holowaychuk",
      "license": "MIT"
    },
    ...
  ]
}

Debugging

You can use the MCP inspector to debug the server. For uvx installations:

npx @modelcontextprotocol/inspector npx -y npm-search-mcp-server

Or if you've installed the package in a specific directory or are developing on it:

cd path/to/servers/src/npm-search
npx @modelcontextprotocol/inspector uv run npm-search-mcp-server

Examples of Questions for Claude

  1. "Search for express package on npm"
  2. "Find packages related to react"
  3. "Show me npm packages for web development"

Build

Docker build:

cd src/npm-search
docker build -t mcp/npm-search .

Contributing

We encourage contributions to help expand and improve npm-search-mcp-server. Whether you want to add new npm-related tools, enhance existing functionality, or improve documentation, your input is valuable.

For examples of other MCP servers and implementation patterns, see: https://github.com/modelcontextprotocol/servers

Pull requests are welcome! Feel free to contribute new ideas, bug fixes, or enhancements to make npm-search-mcp-server even more powerful and useful.

License

npm-search-mcp-server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

btwiuse_npm-search-mcp-server FAQ

How do I install the npm-search-mcp-server?
You can install it globally via npm using `npm install -g npm-search-mcp-server` or automatically via Smithery CLI with `npx -y @smithery/cli install npm-search-mcp-server --client claude`.
What command does this MCP server use to search npm packages?
It uses the standard `npm search` command to query the npm registry for packages matching the search term.
Can this MCP server be used with different LLM clients?
Yes, it is compatible with various LLM clients including Claude, OpenAI GPT models, and Gemini, as it follows the MCP protocol.
What arguments are required to perform a package search?
The `search_npm_packages` tool requires a single argument: `query`, which is the string to search for in npm packages.
Is internet access required for this MCP server to function?
Yes, since it relies on the npm registry via the `npm search` command, internet connectivity is necessary.
How does this server handle search result formatting?
It returns structured data from the npm search command output, making it easy for LLMs to parse and use the results.
Can I use this MCP server to search private npm registries?
By default, it searches the public npm registry. Customization may be needed to support private registries.
Is this MCP server actively maintained?
The server is mirrored from the GitHub repository at https://github.com/btwiuse/npm-search-mcp-server, where updates and issues can be tracked.