惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
月光博客
月光博客
博客园 - 司徒正美
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
量子位
Recent Announcements
Recent Announcements
V
V2EX
P
Proofpoint News Feed
小众软件
小众软件
云风的 BLOG
云风的 BLOG
腾讯CDC
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
B
Blog
博客园_首页
GbyAI
GbyAI
博客园 - Franky

SerpApi

How to scrape Google Play Store app reviews Scrape YouTube Channel Data with SerpApi How to scrape movie and TV results from the Google Play Store SerpApi Weekly Changelog: Sep 07 - 13, 2026 Introducing MCP Bundle Support for SerpApi SerpApi Weekly Changelog: Aug 31 - Sep 06, 2026 We Have Resolved the Google /goto URL Redirect Rollout How to scrape Zillow Reddit promised its users an open internet. Then it closed the door. SerpApi Weekly Changelog: August 24 - 30, 2026 Best web scraping tools in 2026 Google’s New /goto Redirect URLs: Resolution in Progress How to Scrape Walmart Reviews Results Understanding HTTP 429: Too Many Requests Google tried again. We’re moving to dismiss a second time. SerpApi Weekly Changelog: August 17 - 23, 2026 Introducing SerpApi's New Markdown Output SerpApi Surpasses 1.5 Million Activated User Accounts How a Lead Generation Company Scaled Outreach with SerpApi's Google Maps API SerpApi Weekly Changelog: August 10 - 16, 2026 How to scrape book results from the Google Play Store What is an API? Part 3: Dynamic Data Displays with D&D! We Filed an Amicus Brief in U.S. v. Google How to scrape Google Play Store game information SerpApi Weekly Changelog: August 03 - 09, 2026 Introducing SerpApi Search Tools: Real-Time Web Search for Python AI Agents Measuring World Cup Attention: What the data says about Vozinha SerpApi Weekly Changelog: July 27 - August 02, 2026 How to Scrape Google Maps Autocomplete How to Aggregate Local Business Ratings-Without Averaging
Build an AI Event Discovery Agent That Adds Events to You...
Sonika Arora · 2026-08-01 · via SerpApi

AI and software professionals often miss valuable conferences, meetups, and webinars because relevant events are scattered across dozens of websites. Instead of manually searching and comparing listings every week, an AI agent can continuously discover events that match your interests, location, and schedule, and then even add them directly to your calendar.

In this tutorial, we'll build an AI-powered Event Discovery Agent using SerpApi MCP and Claude that takes care of discovery and recommendation. You'll be able to give the agent instructions, using which it will discover events and produce a clean markdown report with recommended events.

Follow along and by the end, you'll have built a personalized AI event concierge.

What We'll Build

The goal is to be able to ask Claude:

Find upcoming AI conferences, meetups, and webinars.

My preferences:
- Located within an hour from San Francisco
- Interested in AI agents, MCP, RAG, and developer tools
- Budget under $500
- Prefer in-person events
- Within the next 90 days

Generate a Markdown report and provide Google Calendar links.

Claude will use SerpApi MCP to search Google events and gather structured event data. Then, it will rank events by relevance, create calendar links and generate a final markdown report.

Example output we aim to see:

Setup

Create a SerpApi Account

For this tutorial, we're going to use SerpApi's Google Events API.

To begin scraping data, create a free account on serpapi.com. You'll receive 250 free search credits each month to explore the API. Get your SerpApi API key here: https://serpapi.com/manage-api-key

Install Claude Code

💡

You'll need to create an account with Claude in case you don't have one yet. You can do that here: https://claude.ai/login
To access Claude Code, you'll need a Claude Pro, Max, or Team subscription OR you can pay per usage via Claude API.

Install Claude Code:

npm install -g @anthropic-ai/claude-code

Verify the installation:

claude --version

You should see the installed version printed in your terminal.

Configure SerpApi MCP

SerpApi's MCP server allows AI assistants to perform live searches using your SerpApi subscription without requiring custom tool implementation. Claude Code can connect to external MCP Servers like SerpApi's to perform searches.

We'll add the SerpApi MCP server to Claude Code:

claude mcp add --transport http serpapi https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp

Once configured, Claude Code can access SerpApi tools directly.

Verify the MCP Connection

Run the following command in your terminal:

claude mcp list

You should see output similar to:

Configured MCP servers:

✓ serpapi
  URL: https://serpapi.com/...
  Status: Connected

If the serpapi server appears in the list, Claude Code has successfully detected the MCP server and can use SerpApi tools during your session. If you don't see the server listed, double-check your MCP configuration and API key, then rerun the setup command.

💡

If you need to remove an incorrectly configured serpapi MCP server, use this command to remove it before rerunning the setup command: claude mcp remove serpapi

Create a Project Directory

Create a workspace for the project:

mkdir event-discovery-agent
cd event-discovery-agent

We'll store generated reports here.

For example:

event-discovery-agent/
├── events.md
└── prompts.md

The events.md file will be generated by Claude.

Define the Agent's Instructions

Here, we provide instructions describing the events we want. This step is important because we're not just searching. We're defining decision criteria.

Think of this as the equivalent of giving requirements to a human assistant.

Without requirements:

Find AI events.

With requirements:

Find AI events focused on developers,
exclude expensive conferences,
prioritize in-person networking opportunities.

The second prompt produces dramatically better results.

Let's create a file called prompts.md in the event-discovery-agent/ directory and add a detailed prompt there:

Use SerpApi MCP to find upcoming conferences, meetups, and webinars related to AI agents, MCP, RAG, and developer tooling.

Requirements:
- Within 100 miles of San Francisco
- Budget under $500
- Next 90 days
- Prefer in-person events

Create a file called events.md.

For each event include:
- Event title
- Date
- Location
- Event URL
- Why it matches my interests
- Google Calendar link

This prompt is the agent's operating instructions.

Run the Event Discovery Agent

Start Claude Code

Head over to the event-discovery-agent/ directory and run:

claude

The first time you run it, Claude Code will prompt you to log in. Once you're logged in, you'll see an interactive prompt similar to:

>

You can now chat with Claude Code directly. By default, Claude Code will have access to all files in the event-discovery-agent/ directory.

Send Claude the prompt file

Now simply give Claude Code the prompt:

Read prompts.md and complete the task.

Claude will follow the instructions in prompts.md and the final output file events.md (with a curated list of events) will be created in the same directory once Claude finishes.

💡

Claude may ask you to confirm if it can perform certain searches. In that case, you must respond with yes so it can complete the task successfully.

Behind the Scenes of the Agent

A software script works great to filter events by date or location. But the agent can evaluate relevance.

For example, suppose an event description contains:

Enterprise AI
Agent Frameworks
RAG Systems
MCP Integrations

Claude can recognize that the event strongly matches the user's interests.

Another event may contain:

Academic Research
AI neural network Theory
Graduate Student Workshop

Even if it technically matches the keyword "AI", Claude may determine that it is less relevant for a software engineer.

The agent thinks about:

  • Is this event relevant?
  • How strongly does it align with preferences?

This reasoning step is what makes the output valuable. Rather than simply listing events, Claude also explains why each one was selected. This is another place where AI adds value beyond simple search results..

Once events have been evaluated, Claude ranks them. Rather than dumping twenty search results into a report, the agent highlights the most useful opportunities first. This makes the final report feel curated rather than generated.

For each event, Claude generates a Google Calendar URL. These URLs contain all event information such as event title, date/time, location etc. When users click the link, Google Calendar opens with a pre-filled event draft. The event can be added to your schedule in one click.

Sample Response

Claude created an events.md file after multiple SerpApi requests.

Here's the final result in events.md at the end of Claude's research:

events.md

Upcoming AI / Developer Events near San Francisco

Search focus: AI agents, MCP, RAG, and developer tooling
Filters applied: within ~100 miles of San Francisco · budget under $500 · next 90 days (Jul 14 – Oct 12, 2026) · in-person preferred
Source: SerpApi Google Events engine (searched 2026-07-14), with ticket pricing spot-checked via web search.

Note on budget: meetups below are free or low-cost. For the multi-day conferences, ticket tiers vary — I've flagged which ones can stay under $500 (early-bird / expo tiers) and which typically exceed it. Always confirm the current price on the registration page before booking.

✅ Best matches (in-person, near SF, next 90 days, likely under $500)1. Data for AI: One AI, Every Data Model

2. 19th San Jose Hardware Meetup — AI/ML in Lab Automation

3. API World 2026 (with AI TechWorld)

⚠️ Strong topic match, but tickets typically exceed $500

These are excellent for AI agents / RAG / dev-tooling content and are in-person near SF within the window, but standard passes generally run above the $500 budget. Listed for awareness — check for free expo passes, community/scholarship tickets, or day passes that might fit.

4. GenAI Summit SF 2026 (co-located with AGI Summit — "The Rise of Agentic Intelligence")

5. The AI Conference 2026

6. Salesforce Dreamforce 2026

Notes & tips

  • Closest topic fit found: "Graph Exchange — Agentic AI Memory" (GraphRAG + AI agents, AWS Builder Loft SF) and "AI Loves Data SF: GenAI & Intelligent Agents" are near-perfect matches but fall on Nov 5 & Nov 18, 2026 — just outside the 90-day window. Worth setting a reminder to register when they open.
  • For free, on-topic meetups on short notice, watch the AWS Builder Loft (525 Market St) calendar and lu.ma / Meetup groups for "AI agents," "MCP," and "RAG" — these tend to be posted only 2–4 weeks ahead, so re-run this search monthly.
  • Google Calendar links are pre-filled with title, date, location, and the event URL. Times are set to America/Los_Angeles; multi-**day conferences are added as all-day spans.

Sources: SerpApi Google Events, API World, GenAI Summit (Eventbrite), The AI Conference.

Because Claude Code can create files directly, the output becomes a reusable artifact rather than a temporary chat response. Every week or month, you can rerun the workflow and generate an updated report.

Conclusion

In this project, we used Claude Code and SerpApi MCP to build an AI-powered Event Discovery Agent. Through a single prompt, Claude was able to discover conferences and meetups using SerpApi, evaluate each event against user-defined preferences, generate Google Calendar links, and compile the results into a clean Markdown report.

I hope you found this useful. If you have any questions, feel free to reach out at contact@serpapi.com.

Build an AI Agent with the Claude Agent SDK (Tutorial 2026)

Learn how to build an AI agent programmatically using Claude Agent SDK. See how to create a connect it to a custom function or MCP.

SerpApiHilman Ramadhan

Top 5 Practical Use Cases for SerpApi MCP Server in AI Agents

SerpApi MCP gives AI agents unified access to live search across multiple engines, returning structured JSON. Agents can use it for competitor analysis, trend tracking, customer support, product monitoring, and multi-agent workflows—enabling real-time, data-driven insights without custom APIs.

SerpApiJames Collins

Introducing SerpApi’s Claude Code Plugin

A native Claude Code plugin that gives Claude direct access to Google, Amazon, Walmart, and 100+ other search engines via the SerpApi REST API — no server or SDK required.

SerpApiJames Collins