chrome-devtools-mcp vs one-search-mcp
Side-by-side comparison to help you pick between these two MCP servers.
chrome-devtools-mcp by ChromeDevTools | one-search-mcp by yokingma | |
|---|---|---|
| Stars | ★ 39,757 | ★ 114 |
| 30d uses | — | — |
| Score | 65 | 47 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Web ScrapingSearchBrowser Automation |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
chrome-devtools-mcp · Summary
Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.
one-search-mcp · Summary
OneSearch MCP Server provides web search, scraping, and content extraction with multiple search providers and local browser automation.
chrome-devtools-mcp · Use cases
- Automated web testing and validation by AI agents
- Performance analysis and optimization of web applications
- Debugging web applications through AI-powered inspection
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
chrome-devtools-mcp · Install
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}For basic browser tasks in headless mode:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}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"
}
}
}
}