PluginBench
MCP Server

io.github.yokingma/one-search-mcp MCP Server

io.github.yokingma/one-search-mcp

What is the io.github.yokingma/one-search-mcp MCP server?

Web search, crawl, scrape & extract with agent-browser, SearXNG, Tavily, DuckDuckGo, Bing & more

How to install io.github.yokingma/one-search-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SEARCH_PROVIDER

    Search provider to use (searxng, duckduckgo, bing, tavily, google, zhipu, exa, bocha, local)

  • SEARCH_API_URL

    API URL for SearXNG (required if using searxng provider), or Google Custom Search Engine ID for google

  • SEARCH_API_KEY
    secret

    API key for search provider (required for tavily, bing, google, zhipu, exa, bocha)

  • ALLOW_PRIVATE_NETWORK

    Allow browser-backed tools to access private, loopback, and link-local network targets when set to true

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "one-search-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "one-search-mcp"
      ],
      "env": {
        "SEARCH_PROVIDER": "<YOUR_SEARCH_PROVIDER>",
        "SEARCH_API_URL": "<YOUR_SEARCH_API_URL>",
        "SEARCH_API_KEY": "<YOUR_SEARCH_API_KEY>",
        "ALLOW_PRIVATE_NETWORK": "<YOUR_ALLOW_PRIVATE_NETWORK>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "one-search-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "one-search-mcp"
      ],
      "env": {
        "SEARCH_PROVIDER": "<YOUR_SEARCH_PROVIDER>",
        "SEARCH_API_URL": "<YOUR_SEARCH_API_URL>",
        "SEARCH_API_KEY": "<YOUR_SEARCH_API_KEY>",
        "ALLOW_PRIVATE_NETWORK": "<YOUR_ALLOW_PRIVATE_NETWORK>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "one-search-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "one-search-mcp"
      ],
      "env": {
        "SEARCH_PROVIDER": "<YOUR_SEARCH_PROVIDER>",
        "SEARCH_API_URL": "<YOUR_SEARCH_API_URL>",
        "SEARCH_API_KEY": "<YOUR_SEARCH_API_KEY>",
        "ALLOW_PRIVATE_NETWORK": "<YOUR_ALLOW_PRIVATE_NETWORK>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "one-search-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "one-search-mcp"
      ],
      "env": {
        "SEARCH_PROVIDER": "<YOUR_SEARCH_PROVIDER>",
        "SEARCH_API_URL": "<YOUR_SEARCH_API_URL>",
        "SEARCH_API_KEY": "<YOUR_SEARCH_API_KEY>",
        "ALLOW_PRIVATE_NETWORK": "<YOUR_ALLOW_PRIVATE_NETWORK>"
      }
    }
  }
}
Claude Code
claude mcp add one-search-mcp --env SEARCH_PROVIDER=<YOUR_SEARCH_PROVIDER> --env SEARCH_API_URL=<YOUR_SEARCH_API_URL> --env SEARCH_API_KEY=<YOUR_SEARCH_API_KEY> --env ALLOW_PRIVATE_NETWORK=<YOUR_ALLOW_PRIVATE_NETWORK> -- npx -y one-search-mcp

Related MCP servers

Time MCP Server, giving LLMs time awareness capabilities.

View repository →