drio
Open app

npm-search MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

The npm-search MCP Server is a Model Context Protocol server that allows users to search for npm packages using the npm search command.

To use the npm-search MCP Server, you can install it via npm or Smithery, and then run the command npm-search-mcp-server followed by your search query.

  • Search for npm packages using a simple command. - Supports installation via npm and Smithery. - Provides configuration options for different environments like Claude and Zed.
  1. Quickly finding npm packages for web development.
  2. Searching for specific libraries or frameworks like Express or React.
  3. Assisting developers in discovering new tools and packages for their projects.

Add to your AI client

Use these steps to connect npm-search MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "btwiuse-npm-search-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-btwiuse-npm-search-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "btwiuse-npm-search-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-btwiuse-npm-search-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "btwiuse-npm-search-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-btwiuse-npm-search-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "btwiuse-npm-search-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-btwiuse-npm-search-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "btwiuse-npm-search-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-btwiuse-npm-search-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "btwiuse-npm-search-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-btwiuse-npm-search-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

How do I install npm-search MCP Server?

You can install it using `npm install -g npm-search-mcp-server` or via Smithery with `npx -y @smithery/cli install npm-search-mcp-server --client claude`.

Can I use it without installation?

Yes, if you are using `uv`, you can run it directly without installation.

Is it open source?

Yes, npm-search MCP Server is licensed under the MIT License, allowing you to use, modify, and distribute it.