Google Search (SERP)

SkillWeb & browsing

Lets your AI search Google using a real Chrome browser and read the full content of the pages it finds. When you ask for web results, your AI can run the search and bring back what it finds, including results from a specific site you name.

Available today. Use it from your connected AI after setup.

After adding it, ask your AI to search the web the way you normally would, for example 'find articles about remote work' or 'search Google for a topic'. It will run the search and return the results with full page content.

Then ask your AI: use the Google Search (SERP) skill

What your AI can do with it

  • Search Google for anything you ask about
  • Read the full page content behind search results
  • Search within a specific site, like dev.to
  • Find recent articles on a topic
  • Handle search requests written in Korean or English

What this skill tells your AI

The instructions your AI receives, as published by team-attention/hoyeon in skills/google-search/SKILL.md and read by ahel’s review.

Search the web through AceDataCloud's Google SERP API.

Setup: See authentication for token setup.

Quick Start

curl -X POST https://api.acedata.cloud/serp/google \
  -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"query": "latest AI news", "type": "search"}'

Search Types

TypeDescriptionReturns
searchWeb search (default)Organic results, knowledge graph, rich snippets
imagesImage searchImage URLs, titles, sources
newsNews articlesHeadlines, sources, publish dates
mapsMap resultsLocations, coordinates
placesLocal businesses/placesName, address, rating, reviews
videosVideo resultsVideo URLs, thumbnails, duration

Parameters

POST /serp/google
{
  "query": "your search query",
  "type": "search",
  "country": "us",
  "language": "en",
  "range": "qdr:w",
  "number": 10,
  "page": 1
}
ParameterTypeDescription
querystringSearch query (required; must contain non-whitespace text; maximum 2048 characters)
typestringOne of: search, images, news, maps, places, videos
countrystringNon-empty country code (e.g., "us", "uk", "cn", "jp"; maximum 32 characters)
languagestringNon-empty language code (e.g., "en", "zh", "ja"; maximum 32 characters)
rangestringTime filter (see below)
numberintNumber of results per page
pageintPage number for pagination
image_sizestringImages only. Filter by size for high-res sources: large / medium / icon, or a megapixel minimum 2mp70mp (e.g. 4mp = larger than 4 megapixels). Use large (or a *mp value) whenever the image will be shown large / full-screen / zoomed.

Time Range Options

ValuePeriod
qdr:hPast hour
qdr:dPast 24 hours
qdr:wPast week
qdr:mPast month
qdr:yPast year
hPast hour
dPast 24 hours
wPast week
mPast month
yPast year

Response Structure

Web search returns structured data including:

  • organic_results: Main search results with title, link, snippet
  • knowledge_graph: Entity information panel (when available)
  • related_searches: Related query suggestions

Gotchas

  • Default search type is "search" (web). Always specify type for non-web searches
  • Country and language codes affect result localization significantly
  • number controls results per page, not total results — use page for pagination
  • Time range (range) only applies to web search and news, not images or places
  • Image resolution (important for video / full-screen use): results include image_url (full-size), thumbnail_url, and image_width/image_height. Pass image_size: "large" (or a megapixel minimum like "4mp") to get sharp sources, and pick the result with the largest image_width×image_height. Always download image_urlnever use thumbnail_url as a final asset (it is tiny and blurry).
  • Places search works best with location-specific queries (e.g., "restaurants near Times Square")

MCP: pip install mcp-serp | Hosted: https://serp.mcp.acedata.cloud/mcp | See all MCP servers

Signals

GitHub stars
174
Forks
24
Last commit
May 2026

ahel review

  • S4info
    community integration — published by team-attention, not google

Automated review, not a security audit. Ruleset v1.

Advanced
Catalog kind
skill
Gateway key
google-search
Source
github.com/team-attention/hoyeon