zenserp
3.5
Zenserp is a powerful MCP server designed to provide real-time access to search engine results.
Zenserp is a powerful MCP server designed to provide real-time access to search engine results. With Zenserp, retrieving and scraping SERP (Search Engine Results Pages) has never been easier, offering valuable SEO data insights. This server is optimized for both efficiency and reliability, making it an essential tool for developers and businesses looking to harness the power of search data.
Features
- Real-time SERP Access: Get instant access to search engine results, enabling you to stay updated with the latest data.
- Efficient Scraping: Easily scrape search results to gather valuable SEO insights and data.
- Device Flexibility: Choose between desktop and mobile devices to tailor your search results for different user experiences.
- Image Results: Optionally retrieve image search results for comprehensive data collection.
- Geolocation Support: Specify the location to customize your search results based on geographic preferences.
MCP Tools
- Search: The primary function of Zenserp, allowing you to retrieve a SERP.
Usage with Different Platforms
python
python
import requests
url = 'https://api.zenserp.com/v1/search'
params = {
'q': 'example query',
'device': 'desktop',
'tbm': 'isch',
'location': 'New York, USA',
'search_engine': 'https://www.google.com',
'num': 10
}
headers = {'apikey': 'your_api_key'}
response = requests.get(url, headers=headers, params=params)
results = response.json()
print(results)