The SerpApi Claude Code plugin gives Claude native access to 100+ search engines. But what does that actually look like in practice? Here are five workflows you can run today — each takes a single prompt, chains one or more search engines, and produces structured output you can use immediately.
All of the outputs below come from API calls made through the plugin during a single Claude Code session. You describe what you need, and the plugin handles engine selection, parameter construction, and result parsing.
1. Cross-Platform Price Comparison
Prompt:
Compare PS5 console prices across Amazon, Walmart, and eBay.
What happens: Claude queries three engines — amazon, walmart, and ebay — extracts pricing and product details from each, and produces a side-by-side comparison.
Output:
| Platform | Product | Price | Rating |
|---|---|---|---|
| Amazon | PlayStation®5 console – 1TB | $649.99 | 4.7 / 5 |
| Walmart | PlayStation 5 Pro Console | $899.00 | 4.6 / 5 |
| eBay | Sony PlayStation 5 Slim Disc (Brand New) | $199.98 | — |
| eBay | Sony PlayStation 5 Slim Digital Edition 1TB (Brand New) | $549.99 | — |
What's useful here: You get structured, comparable data from three different marketplaces in one pass. No tab switching, no manual extraction. Claude can also sort by price, flag the best deal, or export the table to CSV — all in the same conversation.
Engines used: amazon, walmart, ebay
2. Academic Literature Review
Prompt:
Find the most-cited papers on retrieval-augmented generation published since 2024. Summarize each one.
What happens: Claude queries the google_scholar engine with as_ylo=2024 to filter by year, then extracts titles, authors, citation counts, and publication details.
Output:
| # | Paper | Authors | Citations |
|---|---|---|---|
| 1 | Retrieval-Augmented Generation for AI-Generated Content: A Survey | Zhao, Zhang, Yu et al. | 837 |
| 2 | Corrective Retrieval Augmented Generation | Yan, Gu, Zhu, Ling | 527 |
| 3 | Retrieval-Augmented Generation for NLP: A Survey | Wu, Xiong, Cui et al. | 218 |
| 4 | Chain-of-Retrieval Augmented Generation | Wang, Chen, Yang, Huang | 99 |
| 5 | RAG and Understanding in Vision: A Survey and New Outlook | Zheng, Weng, Lyu et al. | 51 |
From here, Claude can summarize each paper's contribution based on the snippets returned by Scholar, or you can ask it to identify common themes across the top results. The structured citation counts let you quickly assess which papers are most influential.
What's useful here: A literature review that would normally take an afternoon of Google Scholar tab-hopping becomes a single prompt. You get ranked results with citation metrics, and Claude can synthesize them into a narrative summary or a LaTeX bibliography.
Engine used: google_scholar
3. Local Business Audit
Prompt:
Find coffee shops near Union Square, San Francisco. Give me ratings, review counts, and hours.
What happens: Claude queries the google_maps engine and returns structured local results with ratings, review volume, addresses, and operating hours.
Output:
| Name | Rating | Reviews | Address | Hours (Mon–Fri) |
|---|---|---|---|---|
| Caffe Central | 4.5 | 1,511 | 133 O'Farrell St | 7 AM – 7 PM |
| The Coffee Movement | 4.7 | 1,320 | 1030 Washington St | 7 AM – 2 PM |
| Scullery | 4.7 | 572 | 687 Geary St | 7 AM – 2 PM |
| Cable Car CoffeeSF | 4.8 | 141 | 902 Market St | 6 AM – 4:30 PM |
| Origin Lab Coffee & Matcha | 4.8 | 102 | 211 Sutter St | 6 AM – 6 PM |
What's useful here: This is the kind of data you would normally compile by hand for a competitive analysis, a real estate evaluation, or a relocation decision. Claude returns it structured and ready to use. You can ask follow-up questions — filter by rating, sort by review count, or expand the search radius — without leaving the terminal.
Engine used: google_maps
4. Trend-Informed Content Brief
Prompt:
What's trending around "AI agents" right now? Check Google Trends for interest over time and Google News for recent coverage. Draft a content brief based on what you find.
What happens: Claude chains two engines — google_trends for search interest data and google_news for current headlines — then synthesizes the results into an actionable content brief.
Trends data (sample):
The term "AI agents" shows consistent search interest between 33–43 (normalized index) over the past three months, with no seasonal dips — indicating sustained, growing attention rather than a spike-and-fade pattern.
Recent headlines:
- "AI tool poisoning exposes a major flaw in enterprise agent security" — VentureBeat
- "Qualcomm CEO says 2026 is the year AI agents go mainstream" — Fortune
- "The barista is human but an AI agent runs this experimental Swedish cafe" — AP News
- "AI agents fueled a frenzy of startup building at the Consensus Miami hackathon" — CoinDesk
Content brief (generated by Claude):
Topic: AI Agents in 2026 — From Hype to Production
Angle: The conversation has shifted from "what are AI agents?" to "how do we secure and deploy them?" Coverage focuses on enterprise security concerns, real-world deployments, and hardware enablement.
Suggested keywords: AI agents, AI agent security, agentic AI, enterprise AI agents, AI automation 2026
Content gap: Most coverage is news-driven. There is room for practical developer tutorials (how to build, test, deploy agents) and security-focused guides.
What's useful here: Combining trend data with live news gives you a research-backed content brief in under a minute. Claude identifies the narrative shift, suggests angles, and spots content gaps — all grounded in current data rather than training-set knowledge.
Engines used: google_trends, google_news
5. Job Market Snapshot
Prompt:
What do senior ML engineer roles look like in NYC right now? Show me titles, companies, salary ranges, and how recently they were posted.
What happens: Claude queries the google_jobs engine and extracts structured listing data including company names, salary information, and posting recency.
Output:
| Title | Company | Salary | Posted |
|---|---|---|---|
| Sr AI/ML Engineer | Phaxis | $175K – $250K/yr | 5 days ago |
| Senior Machine Learning Engineer - Ads | Uber | — | 12 days ago |
| Senior Machine Learning Engineer, Content | Paramount | — | 12 days ago |
| Senior MLOps Engineer | Paramount | — | 10 days ago |
| Senior Machine Learning Engineer (Remote) | Zencastr | — | 4 days ago |
What's useful here: Whether you are hiring, job hunting, or benchmarking compensation, this gives you a real-time snapshot of the market. Claude can go further — aggregate salary ranges across many listings, identify the most common required skills, or compare markets across cities — all by adjusting the query parameters.
Engine used: google_jobs
The Pattern Behind All Five
If you look at these workflows side by side, they share a structure: a natural-language prompt leads to one or more engine calls, and the structured JSON that comes back gets shaped into something readable — a table, a brief, a summary. You never touch a query parameter directly unless you want to.
The interesting part is what happens after the search. Because this runs inside Claude Code, the results do not disappear into a browser tab. Claude can write them to a file, pipe them into a script, use them as context for a follow-up question, or chain another search on top. A price comparison can feed into a spreadsheet. A literature review can become a bibliography. A job market snapshot can inform a salary negotiation email. Search becomes a composable step in a longer workflow rather than a dead end.
Getting Started
Install the plugin and try any of these prompts yourself:
/plugin marketplace add serpapi/serpapi-claude-plugin
/plugin install serpapi@serpapi-plugins
You will need a SerpApi API key — the free tier includes 250 searches per month. Set it as an environment variable:
export SERPAPI_API_KEY="your_key_here"
Then just ask Claude what you need. The plugin handles the rest.
What's Next
These five examples are starting points. The plugin covers 107 search engines — flights, hotels, patents, finance, app stores, and more. Any workflow that starts with "search for..." or "find me..." or "compare..." is a candidate.
The plugin is open source at github.com/serpapi/serpapi-claude-plugin. If you build something interesting with it, we would like to hear about it.