@dccxx/google-search-api
v1.0.5
Published
Google Search API server with browser automation
Maintainers
Readme
First, you need to run the Google Search server, ensuring that Google Chrome is installed on your computer.
bunx @dccxx/google-search-apiProxy Configuration
To bypass Google Captcha, you can configure a proxy server using environment variables. The application supports HTTP, HTTPS, and SOCKS5 proxies.
Setting up Proxy
Set one of the following environment variables:
# HTTP Proxy
export HTTP_PROXY=http://proxy.example.com:8080
# HTTPS Proxy (recommended)
export HTTPS_PROXY=http://proxy.example.com:8080
# With authentication
export HTTPS_PROXY=http://username:[email protected]:8080
# SOCKS5 Proxy
export HTTP_PROXY=socks5://127.0.0.1:1080Using Proxy with the Server
# Set proxy and start server
export HTTPS_PROXY=http://your-proxy-server:port
bunx @dccxx/google-search-apiThe proxy will be automatically applied to both AdsPower and Puppeteer Real Browser instances.
MCP config:
{
"mcpServers": {
"BMMcBfepWWrz2yO7yKPh9": {
"name": "Search MCP",
"type": "stdio",
"description": "",
"isActive": true,
"registryUrl": "",
"timeout": "120",
"command": "bunx @dccxx/search-mcp",
"args": [],
"env": {
"SEARCH_API_HOST": "http://localhost:4566"
}
}
}
}