drio
Open app

MCP Registry Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

MCP Registry Server is a tool designed to retrieve MCP (Multi-Channel Protocol) servers using semantic search capabilities.

To use the MCP Registry Server, you need to install it via Smithery, build the server, and configure it in your Claude Desktop setup.

  • MCP Retriever: Allows users to retrieve MCP servers using semantic search. - Installation via Smithery: Simplifies the installation process for users. - Configuration for Claude Desktop: Provides a clear guide on how to integrate with Claude Desktop.
  1. Retrieving specific MCP servers based on user queries.
  2. Integrating MCP server functionalities into applications using Claude Desktop.
  3. Facilitating semantic search for better server discovery.

Add to your AI client

Use these steps to connect MCP Registry 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": {
    "kbb99-mcp-registry-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kbb99-mcp-registry-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": {
    "kbb99-mcp-registry-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kbb99-mcp-registry-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": {
    "kbb99-mcp-registry-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kbb99-mcp-registry-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": {
    "kbb99-mcp-registry-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kbb99-mcp-registry-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "kbb99-mcp-registry-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kbb99-mcp-registry-server-mcp-mirror"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "kbb99-mcp-registry-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kbb99-mcp-registry-server-mcp-mirror"
      ]
    }
  }
}

FAQ

How do I install the MCP Registry Server?

You can install it using the command: `npx -y @smithery/cli install @KBB99/mcp-registry-server --client claude`.

Can I modify the MCP Registry Server?

Yes! It is licensed under the MIT License, allowing you to use, modify, and distribute the software.

What is the main functionality of the MCP Registry Server?

The main functionality is to retrieve MCP servers using semantic search.