MCP server
by istarwyh
MCP Advisor helps you discover and understand MCP services quickly with natural language queries and advanced semantic s
Discovery and recommendation service that helps find and understand available MCP services based on natural language queries, supporting multiple search backends for exploring servers by semantic similarity.
MCP Advisor is a community-built MCP server published by istarwyh that provides AI assistants with tools and capabilities via the Model Context Protocol. MCP Advisor helps you discover and understand MCP services quickly with natural language queries and advanced semantic s It is categorized under developer tools. This server exposes 2 tools that AI clients can invoke during conversations and coding sessions.
You can install MCP Advisor in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport. This server supports remote connections over HTTP, so no local installation is required.
MIT
MCP Advisor is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated MCP Advisor against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend MCP Advisor for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, MCP Advisor benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
MCP Advisor reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
MCP Advisor reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
MCP Advisor is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
MCP Advisor has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
MCP Advisor has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
MCP Advisor is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired MCP Advisor into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 72
MCP Advisor is a discovery and recommendation service that helps AI assistants explore Model Context Protocol (MCP) servers using natural language queries. It makes it easier for users to find and leverage MCP tools suitable for specific tasks.
Discover & Recommend MCP Servers
"Find MCP servers for insurance risk analysis"Install & Configure MCP Servers
"Install this MCP: https://github.com/Deepractice/PromptX"
https://github.com/user-attachments/assets/7a536315-e316-4978-8e5a-e8f417169eb1
Once configured, the Nacos provider will be automatically enabled and used when searching for MCP servers. You can query it using natural language, for example:
Find MCP servers for insurance risk analysis
Or more specifically:
Search for MCP servers with natural language processing capabilities
The fastest way is to integrate MCP Advisor through MCP configuration:
{
"mcpServers": {
"mcpadvisor": {
"command": "npx",
"args": ["-y", "@xiaohui-wang/mcpadvisor"]
}
}
}
Add this configuration to your AI assistant's MCP settings file:
~/Library/Application Support/Claude/claude_desktop_config.json%AppData%\Claude\claude_desktop_config.jsonTo install Advisor for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @istarwyh/mcpadvisor --client claude
For more installation methods and detailed configuration, see the Quick Start Guide.
To boost recommendation quality, you can run a local Meilisearch instance:
pnpm meilisearch:start
This starts Meilisearch at http://localhost:7700, bootstraps the mcp_servers index
from local data, and persists environment variables to ~/.meilisearch/env.
Load them in your current shell with:
source ~/.meilisearch/env
Or enable it automatically with a single flag when launching MCPAdvisor (no manual env needed):
{
"mcpServers": {
"mcpadvisor": {
"command": "npx",
"args": ["-y", "@xiaohui-wang/mcpadvisor", "--local-meilisearch"]
}
}
}
MCP Advisor adopts a modular architecture with clean separation of concerns and functional programming principles. The codebase has been recently refactored (2025) to improve maintainability and scalability:
graph TD
Client["Client Application"] --> |"MCP Protocol"| Transport["Transport Layer"]
subgraph "MCP Advisor Server"
Transport --> |"Request"| SearchService["Search Service"]
SearchService --> |"Query"| Providers["Search Providers"]
subgraph "Search Providers"
Providers --> MeilisearchProvider["Meilisearch Provider"]
Providers --> GetMcpProvider["GetMCP Provider"]
Providers --> CompassProvider["Compass Provider"]
Providers --> NacosProvider["Nacos Provider"]
Providers --> OfflineProvider["Offline Provider"]
end
OfflineProvider --> |"Hybrid Search"| HybridSearch["Hybrid Search Engine"]
HybridSearch --> TextMatching["Text Matching"]
HybridSearch --> VectorSearch["Vector Search"]
SearchService --> |"Merge & Filter"| ResultProcessor["Result Processor"]
SearchService --> Logger["Logging System"]
end
The codebase follows clean architecture principles with organized directory structure:
src/
├── services/
│ ├── core/ # Core business logic
│ │ ├── installation/ # Installation guide services
│ │ ├── search/ # Search providers
│ │ └── server/ # MCP server implementation
│ ├── providers/ # External service providers
│ │ ├── meilisearch/ # Meilisearch integration
│ │ ├── nacos/ # Nacos service discovery
│ │ ├── oceanbase/ # OceanBase vector database
│ │ └── offline/ # Offline search engine
│ ├── common/ # Shared utilities
│ │ ├── api/ # API clients
│ │ ├── cache/ # Caching mechanisms
│ │ └── vector/ # Vector operations
│ └── interfaces/ # Type definitions
├── types/ # TypeScript type definitions
├── utils/ # Utility functions
└── tests/ # Test suites
├── unit/ # Unit tests
├── integration/ # Integration tests
└── e2e/ # End-to-end tests
Search Service Layer
Search Providers
Hybrid Search Strategy
Transport Layer
For more detailed architecture documentation, see ARCHITECTURE.md.
pnpm install
pnpm run build
MCP Advisor includes comprehensive testing suites to ensure code quality and functionality. For detailed testing information including unit tests, integration tests, end-to-end testing, and manual testing procedures, see the Technical Reference.
Run compr
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.