one-search-mcp vs akshare-one-mcp
Side-by-side comparison to help you pick between these two MCP servers.
one-search-mcp by yokingma | akshare-one-mcp by zwldarren | |
|---|---|---|
| Stars | ★ 114 | ★ 172 |
| 30d uses | — | 13,664 |
| Score | 47 | 75 |
| Official | — | — |
| Categories | Web ScrapingSearchBrowser Automation | FinanceDeveloper ToolsWeb Scraping |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
one-search-mcp · Summary
OneSearch MCP Server provides web search, scraping, and content extraction with multiple search providers and local browser automation.
akshare-one-mcp · Summary
MCP server providing comprehensive Chinese stock market data through akshare-one API.
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
akshare-one-mcp · Use cases
- Financial analysts retrieving Chinese stock data for research
- Algorithmic trading systems accessing real-time market information
- Investment applications providing market data to users
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"
}
}
}
}akshare-one-mcp · Install
Installation
Via Smithery (Recommended)
npx -y @smithery/cli install @zwldarren/akshare-one-mcp --client claudeVia uv
- Install uv if you haven't already
- Add this to your Claude Desktop config:
{
"mcpServers": {
"akshare-one-mcp": {
"command": "uvx",
"args": ["akshare-one-mcp"]
}
}
}Local Development
- Clone:
git clone https://github.com/zwldarren/akshare-one-mcp.git - Install deps:
uv sync - Add to Claude config with
uv run akshare-one-mcpin the command