home / mcp / mcp advisor mcp server
MCP Advisor & Installation - Use the right MCP server for your needs
Configuration
View docs{
"mcpServers": {
"istarwyh-mcpadvisor": {
"command": "npx",
"args": [
"-y",
"@xiaohui-wang/mcpadvisor"
]
}
}
}MCP Advisor helps AI assistants discover and recommend MCP servers through natural language queries. It streamlines finding the right MCP tools for your tasks and makes it quick to install and start using them in your workflows.
You use MCP Advisor by configuring it as an MCP server integration in your assistant or client, then asking in plain language to find MCP servers. For example, you can search for servers that support natural language processing or vector-based recommendations. The system aggregates results from multiple providers and returns the most relevant MCP servers for your task.
Prerequisites: you need Node.js and npm or pnpm installed on your machine.
Install MCP Advisor as an STDIO MCP server using the basic, explicit configuration snippet:
{
"mcpServers": {
"mcpadvisor": {
"command": "npx",
"args": ["-y", "@xiaohui-wang/mcpadvisor"]
}
}
}If you want to install Advisor for Claude Desktop automatically, run this command:
npx -y @smithery/cli install @istarwyh/mcpadvisor --client claudeTo boost recommendation quality, you can run a local Meilisearch instance. Start Meilisearch and load MCP data locally, then source the environment variables in your shell.
pnpm meilisearch:start
```
Load environment variables:source ~/.meilisearch/envYou can enable local Meilisearch directly in the MCP Advisor configuration so you donโt need to load env vars manually.
{
"mcpServers": {
"mcpadvisor": {
"command": "npx",
"args": ["-y", "@xiaohui-wang/mcpadvisor", "--local-meilisearch"]
}
}
}Unified search interface that aggregates multiple MCP providers and executes parallel queries.
Text and vector search provider using Meilisearch for fast document retrieval.
API search provider that queries the GetMCP registry for MCP servers.
API search provider that queries the Compass registry for MCP servers.
Service discovery integration to locate MCP servers dynamically.