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

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.