MCPSearch CLI

The fastest way to discover and install MCP servers for Claude Code, Cursor, Windsurf, and more.

Installation

npm

npm install -g @mcpsearch/cli

npx (no install)

npx @mcpsearch/cli search filesystem

Commands

mcp search <query>

Search for MCP packages in the registry.

# Search for filesystem servers
$ mcp search filesystem
# Filter by category
$ mcp search database --category database
# Limit results
$ mcp search api --limit 5

mcp install <package>

Install an MCP server to your AI coding tool configuration.

# Auto-detect tool and install
$ mcp install @modelcontextprotocol/server-filesystem
# Install for specific tool
$ mcp install mongodb-mcp-server --tool cursor
# Install multiple packages
$ mcp install @anthropic/mcp-server-fetch @anthropic/mcp-server-brave-search

mcp list

List all installed MCP servers.

# List all installed servers
$ mcp list
# List for specific tool
$ mcp list --tool claudeCode
# Output as JSON
$ mcp list --json

mcp info <package>

Show detailed information about a package.

$ mcp info @modelcontextprotocol/server-filesystem

mcp remove <package>

Remove an MCP server from your configuration.

$ mcp remove @modelcontextprotocol/server-filesystem --tool claudeCode

Supported Tools

CC

Claude Code

--tool claudeCode

Cu

Cursor

--tool cursor

WS

Windsurf

--tool windsurf

Cd

Continue.dev

--tool continueDev

Quick Start

# 1. Search for a package
$ mcp search filesystem
# 2. Install it
$ mcp install @modelcontextprotocol/server-filesystem
# 3. Restart your AI tool and start using it!