fetch vs one-search-mcp
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | one-search-mcp by yokingma | |
|---|---|---|
| Stars | ★ 85,748 | ★ 114 |
| 30d uses | — | — |
| Score | 76 | 47 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | Web ScrapingSearchBrowser Automation |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
one-search-mcp · Summary
OneSearch MCP Server provides web search, scraping, and content extraction with multiple search providers and local browser automation.
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
one-search-mcp · Use cases
- Conduct web searches with multiple search providers through MCP
- Scrape and extract content from websites for analysis
- Perform local browser searches without API keys or costs
- Preprocess web content for downstream AI model consumption
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"]
}
}
}one-search-mcp · Install
Installation
Using Claude Desktop
Add to your Claude Desktop configuration file:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"one-search-mcp": {
"command": "npx",
"args": ["-y", "one-search-mcp"],
"env": {
"SEARCH_PROVIDER": "local"
}
}
}
}Manual Installation
# Install globally (Optional)
npm install -g one-search-mcp
# Or run directly with npx
npx -y one-search-mcpUsing Docker
# Pull the image
docker pull ghcr.io/yokingma/one-search-mcp:latestConfigure with Docker in your Claude Desktop config:
{
"mcpServers": {
"one-search-mcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/yokingma/one-search-mcp:latest"],
"env": {
"SEARCH_PROVIDER": "local"
}
}
}
}