mineru-tianshu vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mineru-tianshu by magicyuan876 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 634 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mineru-tianshu · Summary
Enterprise-grade AI preprocessing platform with MCP protocol for document, image, audio, and video processing.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mineru-tianshu · Use cases
- Document parsing and conversion to Markdown/JSON
- Multi-modal data preprocessing for RAG applications
- AI assistant integration via MCP protocol
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
mineru-tianshu · Install
Installation
Docker Deployment (Recommended)
# One-click setup
make setup
# Or use scripts
./scripts/docker-setup.sh # Linux/Mac
scripts\docker-setup.bat # WindowsLocal Development
cd backend
bash install.sh
python start_all.py --enable-mcp # Enable MCP
cd frontend
npm install
npm run devClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mineru-tianshu": {
"url": "http://localhost:8002/sse",
"transport": "sse"
}
}
}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-everything