ALL SKILLS
SCHEDULED1 CREDIT / RUN

Weekly SEO snapshot

Every week, extract a key page and let AI note SEO observations — titles, headings, content shifts worth acting on.

Use this skillFREE KEY INCLUDED · 100 RENDERS / MONTH

The workflow

This skill is a 3-step workflow. Everything below is the full definition — nothing hidden. Use it from the Dashboard (no code), the REST API, or an AI agent via MCP.

workflow.json
{
  "name": "Weekly SEO snapshot",
  "trigger": {
    "type": "cron",
    "everyMinutes": 10080
  },
  "steps": [
    {
      "action": "extract",
      "url": "https://yoursite.example.com"
    },
    {
      "action": "ai",
      "prompt": "You are an SEO auditor. From this page content, note title intent, main headings and any content gaps in 4 bullets.",
      "input": "{{1.text}}"
    },
    {
      "action": "email",
      "to": "you@example.com",
      "subject": "Weekly SEO snapshot",
      "body": "{{3.text}}"
    }
  ]
}

Three ways to run it

1No code — Dashboard

Hit “Use this skill” — the builder opens with every step prefilled. Edit the placeholder URLs, press run. Done.

2API — one request

curl
curl -X POST https://api.ottersnap.com/v1/workflows \
  -H "Authorization: Bearer otter_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"Weekly SEO snapshot","trigger":{"type":"cron","everyMinutes":10080},"steps":[{"action":"extract","url":"https://yoursite.example.com"},{"action":"ai","prompt":"You are an SEO auditor. From this page content, note title intent, main headings and any content gaps in 4 bullets.","input":"{{1.text}}"},{"action":"email","to":"you@example.com","subject":"Weekly SEO snapshot","body":"{{3.text}}"}]}'

3AI agent — via MCP

Glint ships an official MCP server. Paste this prompt into Claude, Cursor or Codex and it creates the skill for you:

agent prompt
Using the ottersnap-mcp server (npm: ottersnap-mcp), create a Glint workflow with this exact definition:

{
  "name": "Weekly SEO snapshot",
  "trigger": {
    "type": "cron",
    "everyMinutes": 10080
  },
  "steps": [
    {
      "action": "extract",
      "url": "https://yoursite.example.com"
    },
    {
      "action": "ai",
      "prompt": "You are an SEO auditor. From this page content, note title intent, main headings and any content gaps in 4 bullets.",
      "input": "{{1.text}}"
    },
    {
      "action": "email",
      "to": "you@example.com",
      "subject": "Weekly SEO snapshot",
      "body": "{{3.text}}"
    }
  ]
}

Then confirm it was created and tell me how to run it once manually.

Step by step

01

extractREAD

https://yoursite.example.com

02

aiAI

You are an SEO auditor. From this page content, note title intent, main headings and any content gaps in 4 bullets.

accepts {{1.…}} from the previous step

03

emailSEND

you@example.com · Weekly SEO snapshot

accepts {{2.…}} from the previous step

EVERY RUN = 1 CREDIT · FAILED STEPS STOP THE CHAIN · RESULTS FEED FORWARD WITH TEMPLATES