Searches the web via AceDataCloud's Google SERP API. Supports web, images, news, maps, places, and videos with localization, time filtering, and pagination. Returns structured results including titles, snippets, and URLs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/acedatacloud-ai-media:google-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search the web through AceDataCloud's Google SERP API.
Search the web through AceDataCloud's Google SERP API.
Setup: See authentication for token setup.
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"}'
| Type | Description | Returns |
|---|---|---|
search | Web search (default) | Organic results, knowledge graph, rich snippets |
images | Image search | Image URLs, titles, sources |
news | News articles | Headlines, sources, publish dates |
maps | Map results | Locations, coordinates |
places | Local businesses/places | Name, address, rating, reviews |
videos | Video results | Video URLs, thumbnails, duration |
POST /serp/google
{
"query": "your search query",
"type": "search",
"country": "us",
"language": "en",
"range": "qdr:w",
"number": 10,
"page": 1
}
| Parameter | Type | Description |
|---|---|---|
query | string | Search query (required) |
type | string | One of: search, images, news, maps, places, videos |
country | string | Country code (e.g., "us", "uk", "cn", "jp") |
language | string | Language code (e.g., "en", "zh", "ja") |
range | string | Time filter (see below) |
number | int | Number of results per page |
page | int | Page number for pagination |
| Value | Period |
|---|---|
qdr:h | Past hour |
qdr:d | Past 24 hours |
qdr:w | Past week |
qdr:m | Past month |
qdr:y | Past year |
Web search returns structured data including:
organic_results: Main search results with title, link, snippetknowledge_graph: Entity information panel (when available)related_searches: Related query suggestions"search" (web). Always specify type for non-web searchesnumber controls results per page, not total results — use page for paginationrange) only applies to web search and news, not images or placesMCP:
pip install mcp-serp| Hosted:https://serp.mcp.acedata.cloud/mcp| See all MCP servers
npx claudepluginhub acedatacloud/skills --plugin acedatacloud-ai-toolsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.