Workflow

Weekly SEO with Claude Workflow

Weekly cron: Claude Code + Scavio MCP runs competitor scan, AI Overview citation check, and brief refresh for tracked keywords.

Overview

Weekly cron drives Claude Code with Scavio MCP attached. Per tracked keyword: pull SERP, AI Overview citations, top competitors, draft brief refresh.

Trigger

Weekly cron Monday 8am

Schedule

Weekly Monday 8am

Workflow Steps

1

Load tracked keyword set

20-100 keywords from a Postgres table.

2

Per keyword: Scavio search with include_ai_overview

Capture top-10 + AI Overview citations.

3

Identify position changes vs last week

Diff against historical store.

4

If position dropped >2 spots: trigger Claude brief refresh

Claude reads new top-3 + drafts updated brief.

5

If new AI Overview citation source: log it

Track which sources Google AIO is now citing.

6

Send Slack digest

Top movers, AIO changes, drafts ready for review.

Python Implementation

Python
import requests, os
H = {'x-api-key': os.environ['SCAVIO_API_KEY']}

def weekly_check(keyword, target_domain):
    r = requests.post('https://api.scavio.dev/api/v1/search',
        headers=H, json={'query': keyword, 'include_ai_overview': True}).json()
    pos = next((i for i, x in enumerate(r['organic_results'], 1) if target_domain in x['link']), None)
    aio_cites = [c['url'] for c in r.get('ai_overview', {}).get('citations', [])]
    return {'position': pos, 'aio_citations': aio_cites}

JavaScript Implementation

JavaScript
// Same in TS.

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Frequently Asked Questions

Weekly cron drives Claude Code with Scavio MCP attached. Per tracked keyword: pull SERP, AI Overview citations, top competitors, draft brief refresh.

This workflow uses a weekly cron monday 8am. Weekly Monday 8am.

This workflow uses the following Scavio platforms: google. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 500 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

Weekly SEO with Claude Workflow

Weekly cron: Claude Code + Scavio MCP runs competitor scan, AI Overview citation check, and brief refresh for tracked keywords.