everything vs mcp-server-weibo
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-weibo by qinyuanpei | |
|---|---|---|
| Stars | ★ 85,748 | ★ 45 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | social-mediaWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-weibo · Summary
A robust MCP server providing Weibo social media data access with automatic authentication and both HTTP and stdio interfaces.
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
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
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-everythingmcp-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"
}
}
}