MCP Catalogs
Home

fetch vs mingli-mcp

Side-by-side comparison to help you pick between these two MCP servers.

fetch
by modelcontextprotocol
mingli-mcp
by spyfree
Stars★ 85,748★ 2
30d uses
Score7638
Official
Categories
Web ScrapingAI / LLM ToolsProductivity
AI / LLM ToolsOther
LanguageTypeScriptPython
Last committhis month2 mo ago

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

mingli-mcp · Summary

A feature-rich fortune telling MCP server supporting Zi Wei Doushu, Bazi, and planned astrology systems with multi-language output.

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

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

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

mingli-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.txt

Then configure your MCP client to use:

{
  "mcpServers": {
    "mingli": {
      "command": "/path/to/venv/bin/python",
      "args": ["/path/to/mingli_mcp.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.