everything vs mingli-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mingli-mcp by spyfree | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mingli-mcp · Summary
A feature-rich fortune telling MCP server supporting Zi Wei Doushu, Bazi, and planned astrology systems with multi-language output.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mingli-mcp · Use cases
- Fortune tellers can use it to quickly generate birth charts and analysis for clients
- AI assistants can provide personalized fortune analysis through MCP integration
- Developers can integrate fortune-telling capabilities into their applications
- Users can get multi-dimensional life insights through various palace analyses
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmingli-mcp · Install
Installation
Using uvx (Recommended)
Add to your MCP configuration:
{
"mcpServers": {
"mingli": {
"command": "uvx",
"args": ["mingli-mcp"],
"env": {
"LOG_LEVEL": "INFO"
}
}
}
}From source
git clone https://github.com/spyfree/mingli-mcp
cd mingli-mcp
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtThen configure your MCP client to use:
{
"mcpServers": {
"mingli": {
"command": "/path/to/venv/bin/python",
"args": ["/path/to/mingli_mcp.py"]
}
}
}