fetch vs mcp-server-weibo
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | mcp-server-weibo by qinyuanpei | |
|---|---|---|
| Stars | ★ 85,748 | ★ 45 |
| 30d uses | — | — |
| Score | 76 | 45 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | social-mediaWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mcp-server-weibo · Summary
A robust MCP server providing Weibo social media data access with automatic authentication and both HTTP and stdio interfaces.
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
mcp-server-weibo · Use cases
- Enabling AI applications to analyze social media trends and public opinion
- Providing data sources for content analysis and research projects
- Integrating Weibo data into chatbots for social media interaction
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-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}mcp-server-weibo · Install
Installation
**Using package manager (recommended):**
uvx install mcp-server-weibo**Using Docker:**
docker build -t mcp-server-weibo .
docker run -p 4200:4200 mcp-server-weibo http**From source:**
git clone https://github.com/qinyuanpei/mcp-server-weibo.git
cd mcp-server-weibo
uv pip install -e .**MCP Client Configuration (stdio mode):**
{
"mcpServers": {
"weibo": {
"command": "uvx",
"args": ["mcp-server-weibo"]
}
}
}**MCP Client Configuration (HTTP mode):**
{
"mcpServers": {
"weibo": {
"url": "http://localhost:4200/sse"
}
}
}