MCP Catalogs
Home

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 uses13,664
Score4775
Official
Categories
Web ScrapingSearchBrowser Automation
FinanceDeveloper ToolsWeb Scraping
LanguageTypeScriptPython
Last commit1 mo ago2 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-mcp

Using Docker

# Pull the image
docker pull ghcr.io/yokingma/one-search-mcp:latest

Configure 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 claude

Via uv

  1. Install uv if you haven't already
  2. Add this to your Claude Desktop config:
{
  "mcpServers": {
    "akshare-one-mcp": {
      "command": "uvx",
      "args": ["akshare-one-mcp"]
    }
  }
}

Local Development

  1. Clone: git clone https://github.com/zwldarren/akshare-one-mcp.git
  2. Install deps: uv sync
  3. Add to Claude config with uv run akshare-one-mcp in the command
Comparison generated from public README + GitHub signals. Last updated automatically.