- MCP Retriever: Retrieve MCP Servers using semantic search
- retrieve_mcps
- Perform retrieval operations against the MCP registry.
- Inputs:
query
(string): The search query for retrieval.
To install MCP Registry Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @KBB99/mcp-registry-server --client claude
First build the server:
git clone https://github.com/KBB99/mcp-registry-server.git
cd mcp-registry-server
npm install
npm run build
You can confirm the server is working by running:
node ./dist/index.js
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"mcp-registry-server": {
"command": "node",
"args": [
"./path/to/build/mcp-registry-server/dist/index.js"
]
}
}
}
This 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.
This README assumes that your server package is named mcp-server-retriever
. Adjust the package name and installation details if they differ in your setup. Also, ensure that your server script is correctly built and that all dependencies are properly managed in your package.json
.