Gatsby SEO automation

Gatsby SEO automation: publish without a pull request per post

AutoSEO delivers finished articles as signed webhook payloads to an endpoint you own, which writes them into whichever data source your Gatsby build already sources from.

Try AutoSEO with Gatsby

Quick answer

How do you automate SEO content on a Gatsby site?

AutoSEO has no dedicated Gatsby connector; you use the generic Custom webhook. Each finished article is POSTed as HMAC-signed JSON to an endpoint you control, which writes it into whatever your Gatsby site sources from — MDX files in the repo, or a headless CMS — and your existing build publishes it. The research, writing, optimisation, metadata and schema are all handled before the hand-off.

How AutoSEO publishes to Gatsby

The generic Custom webhook — there is no Gatsby-specific connector in AutoSEO. The article arrives at your endpoint as HMAC-signed JSON (title, slug, HTML body, excerpt, meta fields, canonical, keywords, hero image, structured data, stable external ID). For Gatsby that endpoint usually writes an MDX file into the repo or a record into the headless CMS your gatsby-source plugin already reads, then lets your normal build pick it up.

To be clear about what exists: there is no dedicated Gatsby connector in AutoSEO today. Gatsby is reached through the generic Custom webhook, with an endpoint you run doing the final placement. If a one-click Gatsby install appears later, this page will say so — until then it does not.

Automated

  • Keyword research, writing and on-page optimisation
  • Metadata and structured data generated with the article
  • Signed delivery with a delivery log and a stable external ID
  • Refresh cycles keyed to the external ID

Still needs a human

  • Building the receiving function and mapping fields to your data source
  • Your gatsby-node and GraphQL layer — AutoSEO writes data, not queries
  • Triggering builds and managing build minutes

Step-by-step setup lives in the webhook integration guide.

Where Gatsby sites get stuck

Every post is a pull request, so publishing competes with feature work
Build times long enough to discourage frequent publishing
SEO spread across several plugins with no single owner
Internal linking that decays as the post count grows

What automation changes

Signed delivery of finished articles into your existing data source
Metadata, canonical, OG fields and JSON-LD generated with the article
Internal-link suggestions computed across the whole published set
Refresh cycles that update existing content rather than adding near-duplicates

What's genuinely different about SEO on Gatsby

Generic SEO advice fails on Gatsby for platform-specific reasons. These are the ones that actually change what you should do.

The data layer is the integration point

Gatsby's GraphQL layer means it does not matter much where content physically lives — MDX, a CMS, or a database — as long as a source plugin reads it. That flexibility is why a webhook into your data source is the cleanest hand-off.

Build time is a publishing tax

On a large Gatsby site, full rebuilds are slow enough that people batch posts rather than publish steadily. Incremental builds and per-post triggers are worth configuring before you increase cadence, not after.

SEO plugin sprawl is the usual mess

React Helmet or Gatsby Head, a sitemap plugin, a robots plugin, a schema snippet — four sources of truth for one <head>. Consolidating before adding content saves debugging why a canonical is wrong on exactly one template.

GEO on Gatsby: getting cited by AI answer engines

Generative engine optimisation is a different job from ranking. An answer engine lifts a passage and decides whether to credit a source — so the questions that matter on Gatsby are whether AI crawlers can read the page, whether you control what they're told, and whether the page carries attribution they can resolve.

Can AI crawlers read a Gatsby page?
Gatsby pre-renders to static HTML, so article text is in the initial response for AI crawlers. Content fetched client-side after hydration is the exception — assume it will not be read.
Crawler control: robots.txt and llms.txt
Complete control. robots.txt and /llms.txt live in static/, and per-crawler rules are yours to write.
FAQ and Article schema
Emit FAQPage and Article JSON-LD from Gatsby Head using the same page data you render, so the markup and visible text stay in parity by construction.
Byline and dates — the real blocker
Render a byline and both dates from your frontmatter or CMS fields. A static blog with no visible author is exactly the page shape answer engines paraphrase without crediting.

The pattern across every platform is the same: content quality is rarely what stops a citation — missing attribution is. Check what an engine can currently see with the free SEO tools, or read the SEO automation overview.

The Gatsby SEO playbook

What is Gatsby SEO automation?

Gatsby SEO automation means running the recurring parts of SEO — keyword research, article writing, on-page optimisation, publishing and tracking — as a scheduled system rather than as manual work. On Gatsby specifically it also means working with the platform's own constraints, starting with the one most sites hit first: Every post is a pull request, so publishing competes with feature work. What it does not mean is removing judgement — the decisions about what to sell, what to claim and what to say stay with you.

How do you improve SEO on Gatsby?

Publish keyword-targeted content on a cadence you can actually sustain, fix the on-page basics on what you already have (titles, meta descriptions, internal links, schema), and measure both search rankings and AI citations. AutoSEO runs all three on Gatsby: it researches winnable keywords, writes and optimises the article, delivers it via the generic signed webhook, and tracks what happens next.

The recurring Gatsby SEO mistakes

  • Every post is a pull request, so publishing competes with feature work.
  • Build times long enough to discourage frequent publishing.
  • SEO spread across several plugins with no single owner.
  • Internal linking that decays as the post count grows.

What a working Gatsby system looks like

  • Signed delivery of finished articles into your existing data source.
  • Metadata, canonical, OG fields and JSON-LD generated with the article.
  • Internal-link suggestions computed across the whole published set.
  • Refresh cycles that update existing content rather than adding near-duplicates.
Manual Gatsby SEO vs automated
Manual on GatsbyAutoSEO
Keyword researchOccasional, when someone has timeScheduled, before every article
WritingIn-house hours or a freelancerAI-drafted, reviewed as much or as little as you want
Getting it into GatsbyCopy, paste, format, fixSigned delivery to your endpoint
Meta, schema, internal linksRemembered sometimesApplied to every article
Refreshing old contentRarely — nothing prompts itDecay detection flags it
Rank + AI-visibility tracking
Ongoing costWriters and tools billed separatelyOne subscription — see pricing

Key takeaways

  • Gatsby can rank as well as any platform. The gap is a sustained content and on-page system, not the CMS.
  • AutoSEO has no dedicated Gatsby connector — content is delivered via the generic signed webhook to an endpoint you run.
  • For AI citation on Gatsby, attribution beats volume: a visible byline, a published date and an updated date matter more than another thousand words.
  • Automation removes the recurring work, not the judgement — you still decide cadence, claims and what gets reviewed.

What Makes Gatsby SEO Different From Other Frameworks

Gatsby generates static HTML at build time using React and GraphQL. Every page your visitors and search engines receive is pre-rendered HTML, not a JavaScript bundle that requires client-side execution to produce content. This single architectural fact is the foundation of every SEO decision you make on Gatsby — and it separates Gatsby from frameworks like Next.js in SSR mode or client-side-only React apps where Googlebot must execute JavaScript to see content.

When Googlebot crawls a Gatsby page, it receives a complete HTML document immediately. There is no render budget to worry about, no hydration delay before content appears in the DOM, and no dependency on JavaScript execution for indexable text. This gives Gatsby a structural SEO advantage that you can still undermine with poor implementation choices.

How Gatsby Sites Are Structured and Why It Matters for SEO

Gatsby builds pages through three distinct mechanisms, each with different SEO implications:

  • Programmatic pages via gatsby-node.js: You call createPage() inside createPages to generate pages from data sources — CMS entries, markdown files, JSON, APIs. These pages share a template component and receive context data. URL structure, canonical tags, and metadata are all defined here at scale.
  • File-system pages in src/pages/: Any React component placed in this directory becomes a page at a predictable URL. src/pages/about.js becomes /about/. Simple, but easy to accidentally create duplicate or unintended routes.
  • Gatsby File System Route API: Using bracket syntax like src/pages/blog/{mdx.slug}.js, Gatsby auto-generates pages from a data collection without touching gatsby-node.js. URL structure is constrained by the field you reference, so choose your slug fields carefully.

The output of every build is a directory of static HTML files, a public/ folder, with each page as either an index.html inside a directory (producing clean URLs like /blog/my-post/) or a flat HTML file. Gatsby defaults to the directory structure, which produces trailing-slash URLs. This matters because /blog/my-post and /blog/my-post/ are technically different URLs. Gatsby's default behavior adds trailing slashes, and your canonical tags, sitemap entries, and internal links must all match this consistently.

The Exact Technical SEO Levers in Gatsby

URL Structure and Routing

Gatsby does not have a built-in routing configuration file like Next.js's next.config.js rewrites. URLs are determined by file location or the path you pass to createPage(). To control URL structure programmatically, you set the path argument in createPage() — this is where you enforce lowercase slugs, remove special characters, and build hierarchical paths like /category/subcategory/post-slug/.

Gatsby's gatsby-config.js exposes a trailingSlash option (introduced in Gatsby 4) with three values: "always", "never", and "ignore". Set this explicitly. Leaving it undefined creates inconsistency between your HTML output and any redirect layer you configure on your CDN or hosting platform.

Metadata and the Head API

Gatsby does not inject page metadata automatically. You are responsible for every <title>, <meta name="description">, and canonical tag on every page. The two main approaches are:

  • Gatsby Head API (Gatsby 4.19+): Export a named Head function from your page component. Gatsby renders this server-side into the document <head>. This is the current recommended approach and produces clean, statically rendered head elements without a third-party dependency.
  • react-helmet / gatsby-plugin-react-helmet: The legacy approach. Still functional but adds a runtime dependency and requires the plugin to work correctly during static rendering. New projects should use the Head API.

For programmatic pages, pass all metadata fields through the pageContext object in createPage() and consume them in your Head export. Never hardcode titles or descriptions in templates — every page needs unique, data-driven metadata.

Sitemaps

Gatsby does not generate a sitemap by default. You add gatsby-plugin-sitemap to your project. This plugin runs during the build and produces an XML sitemap from all pages Gatsby is aware of. Key configuration decisions:

  • Set the siteUrl field in gatsby-config.js — the plugin uses this to construct absolute URLs. Without it, your sitemap entries will be relative or malformed.
  • Use the excludes option to remove pages that should not be indexed: thank-you pages, preview routes, paginated duplicates, admin paths.
  • The plugin supports a query option to pull custom fields like lastmod dates from your GraphQL data layer. Wire this to your CMS's last-modified timestamps for accurate change frequency signals.
  • Submit the sitemap URL directly in Google Search Console. Gatsby's default output path is /sitemap/sitemap-index.xml in recent plugin versions — verify this matches what you submit.

Schema Markup and Structured Data

Gatsby has no built-in structured data system. You inject JSON-LD directly inside your Head export using a <script type="application/ld+json"> tag. Build your schema objects as JavaScript objects in your page templates or in a dedicated utility function, then serialize them with JSON.stringify(). For sites with many content types — articles, products, FAQs, breadcrumbs — create a schema factory function per type and call it with page-specific data from pageContext.

Do not use a generic Gatsby SEO plugin and assume it handles schema correctly for your content type. Most plugins produce only basic WebPage or WebSite schema. Article, Product, BreadcrumbList, and FAQPage schemas require custom implementation tied to your actual data fields.

Performance and Core Web Vitals

Gatsby's performance defaults are strong but not automatic. The framework ships with:

  • gatsby-plugin-image: Replaces the deprecated gatsby-image. Use the StaticImage and GatsbyImage components for all images. These handle WebP/AVIF conversion, responsive srcsets, lazy loading, and low-quality image placeholders (LQIP) automatically. Using standard <img> tags instead of these components is one of the most common performance mistakes on Gatsby sites.
  • Automatic code splitting: Each page gets its own JavaScript bundle. Gatsby also prefetches linked pages when their links enter the viewport, which improves perceived navigation speed without affecting initial page load.
  • CSS-in-JS and font loading: If you use styled-components or Emotion, configure the corresponding Gatsby plugin to enable server-side rendering of critical CSS. For web fonts, use gatsby-plugin-webfonts or self-host fonts and preload them in your Head export to eliminate render-blocking font requests.

The Most Common Gatsby SEO Mistakes

Mistake What Goes Wrong The Fix
No siteUrl in gatsby-config.js Sitemap and canonical tags produce relative or broken URLs Set siteUrl to your production domain with no trailing slash
Inconsistent trailing slashes Google indexes both versions, splitting link equity Set trailingSlash: "always" and match it in canonical tags and sitemap
Missing canonical tags on paginated pages Page 2, 3, etc. compete with page 1 for the same query Add self-referencing canonicals on all paginated pages; do not canonical page 2+ to page 1 unless content is truly duplicate
Using <img> instead of gatsby-plugin-image No WebP, no lazy loading, poor LCP scores Replace all content images with GatsbyImage or StaticImage
Indexing preview or staging routes Duplicate content indexed from CMS preview URLs Add preview paths to sitemap excludes and set noindex in the Head export for those routes
No robots.txt configuration Gatsby does not generate robots.txt by default; crawlers have no directives Use gatsby-plugin-robots-txt and configure it to match your environment — block staging, allow production
Hardcoded metadata in templates Every blog post or product page shares the same title and description Pass unique metadata through pageContext from your data source

The Robots.txt Gap

Gatsby does not create a robots.txt file during a build unless you explicitly configure it. Without this file, search engines crawl everything, including paths you may not want indexed. Install gatsby-plugin-robots-txt and use its env option to serve a disallow-all robots.txt on staging environments and a permissive one on production. This prevents your staging site from being indexed if it is publicly accessible, which is a frequent cause of duplicate content issues on Gatsby projects deployed to preview URLs on Netlify or Vercel.

The 404 Page and Crawl Errors

Gatsby generates a 404.js page in src/pages/ automatically when you create that file. However, whether your hosting platform actually serves this as a true 404 HTTP status code depends on your hosting configuration. On Netlify, add a _redirects file or netlify.toml rule to serve your 404 page with a 404 status. On Vercel, configure vercel.json. A 404 page served with a 200 status code is a soft 404 — Google will eventually deindex it or treat it as low-quality content.

Step-by-Step SEO Workflow for Gatsby Sites

The most effective SEO workflow for a Gatsby site follows five sequential phases: keyword research tied to your data layer, content creation with structured metadata, on-page optimization inside MDX or your CMS, programmatic sitemap and index submission, and rank tracking connected back to your Gatsby build pipeline. Each phase builds on the last, and automating the handoffs between them removes the manual bottlenecks that cause Gatsby sites to rank below their technical potential.

Phase 1: Keyword Research Mapped to Your Content Model

Before writing a single page, map your target keywords directly to the content types your Gatsby site already generates. If your site pulls from Contentful, Sanity, or a local MDX directory, every keyword cluster should correspond to a node type in your GraphQL schema. This prevents orphaned content that ranks for nothing because it was never connected to a real search intent.

  • Identify head terms and long-tail variants for each content type (blog posts, product pages, documentation pages, landing pages).
  • Group keywords by search intent: informational queries belong in blog or docs nodes, transactional queries belong in product or service page nodes.
  • Assign a primary keyword and two to four secondary keywords to each planned URL before any content is drafted.
  • Cross-reference search volume against your site's existing internal link structure so high-priority pages receive the most internal equity.

Phase 2: Content Creation With SEO Constraints Built In

Write content with the Gatsby rendering model in mind. Because Gatsby pre-renders HTML at build time, every heading, paragraph, and image alt attribute is part of the static output that crawlers index. There is no client-side rendering delay to hide thin content or missing tags.

  1. Draft the page around one primary keyword placed in the first 100 words, the first H2, and the meta title.
  2. Use secondary keywords naturally in H3 subheadings and body paragraphs without forcing density.
  3. Write a meta description between 140 and 160 characters that includes the primary keyword and a clear reason to click.
  4. Add descriptive alt text to every image that will be processed through gatsby-plugin-image, because the plugin optimizes file size but does not generate alt text automatically.
  5. Structure long-form content with a logical H2/H3 hierarchy so Gatsby's static HTML output contains clean heading nesting for both crawlers and AI Overview extraction.

Phase 3: On-Page Optimization Inside Gatsby

On-page SEO in Gatsby happens at the component level. The gatsby-plugin-react-helmet package or the native Gatsby Head API controls all meta tags. Every page component should export a Head function that dynamically populates title, description, canonical URL, Open Graph tags, and structured data from the page's GraphQL query result.

  • Set canonical tags on every page to prevent duplicate content between paginated routes, tag archives, and category pages.
  • Add JSON-LD structured data for the content type: Article schema for blog posts, Product schema for e-commerce nodes, FAQPage schema for support content.
  • Ensure gatsby-plugin-sitemap is configured to exclude noindex pages such as thank-you pages, preview routes, and admin paths.
  • Use gatsby-plugin-robots-txt to block staging subdomains and build preview URLs from being indexed if your CI/CD pipeline exposes them publicly.
  • Set explicit width and height attributes on images through gatsby-plugin-image's static image component to eliminate Cumulative Layout Shift, which directly affects Core Web Vitals scores.

Phase 4: Publishing, Sitemap Submission, and Indexing

After a Gatsby build completes and deploys to Netlify, Vercel, or your CDN of choice, the sitemap at /sitemap/sitemap-index.xml (the default output of gatsby-plugin-sitemap) should be submitted to Google Search Console and Bing Webmaster Tools immediately. New pages in a Gatsby site are not automatically discovered just because the build succeeded — active submission shortens the gap between publish and index.

  • Submit the sitemap index URL in Google Search Console under the Sitemaps report after every major content push.
  • Use the URL Inspection tool to request indexing for high-priority new pages individually, especially pages targeting competitive keywords.
  • If you publish frequently, connect a post-deploy webhook from Netlify or Vercel to a script that pings the Google Indexing API for eligible page types (currently limited to JobPosting and BroadcastEvent structured data, but useful where applicable).
  • Verify that your CDN is not caching a stale sitemap from a previous build, which would cause Search Console to see outdated URLs.

Phase 5: Rank Tracking and Iterative Improvement

Track rankings at the keyword-to-URL level, not just domain-level visibility. For Gatsby sites that generate hundreds or thousands of pages programmatically, a spreadsheet approach breaks down quickly. Connect Google Search Console data to a tracking tool that can surface which programmatically generated pages are gaining or losing impressions, so you can prioritize content updates in your CMS before the next build.

  • Review click-through rate by page weekly. A page ranking in positions 4 through 10 with a low CTR needs a stronger meta title, not more backlinks.
  • Monitor Core Web Vitals in Search Console's Experience report after each deploy to catch regressions introduced by new plugins or third-party scripts.
  • Set up Google Search Console email alerts for manual actions and coverage errors so indexing problems surface before they compound across multiple builds.

How AutoSEO Automates the Entire Gatsby SEO Workflow

AutoSEO handles every phase of the Gatsby SEO workflow inside a single connected pipeline: keyword research, content brief generation, writing, CMS publishing, sitemap submission, and rank tracking run as a sequence rather than as separate manual tasks. For Gatsby specifically, this matters because the build-and-deploy cycle means any delay in the content pipeline translates directly into delayed indexing.

Workflow Phase Manual Gatsby Process AutoSEO Automation
Keyword Research Export from third-party tool, map to content model manually Pulls search volume and intent data, maps clusters to your existing Gatsby content types automatically
Content Brief Write brief manually from SERP analysis Generates structured brief with primary keyword, secondary keywords, suggested H2/H3 structure, and target word count
Content Writing Writer drafts, editor revises, SEO reviews Produces SEO-optimized draft with correct heading hierarchy, meta title, meta description, and alt text recommendations ready for review
Publishing to Gatsby Paste into CMS or MDX file, trigger build manually Pushes content directly to your connected CMS (Contentful, Sanity, DatoCMS) or commits MDX to your repository, triggering a Gatsby build automatically
Index Submission Submit sitemap in Search Console manually after each deploy Detects new URLs in the updated sitemap post-build and submits them to Google Search Console via API without manual intervention
Rank Tracking Check rankings in separate tool, compare to previous period manually Tracks keyword positions at the URL level, surfaces CTR and impression changes, and flags pages that need content updates before the next build cycle

The connection between AutoSEO and Gatsby's build pipeline is what separates it from general SEO tools. Because Gatsby sites require a build to publish any content change, every hour saved in the research-to-publish phase is an hour gained in indexing time. AutoSEO's direct CMS integration means content moves from approved draft to live static HTML without a manual copy-paste step that typically introduces metadata errors or missing structured data.

For teams running Gatsby with a headless CMS, AutoSEO's publishing integration respects your existing content model fields. It populates the SEO title, meta description, canonical URL, and structured data fields that your Gatsby Head API reads from GraphQL, so the output of every automated publish is already on-page optimized before the build runs.

FAQ

Does Gatsby handle SEO better than Next.js or WordPress?

Gatsby's static site generation produces fully pre-rendered HTML that crawlers can read without executing JavaScript, which gives it a technical SEO advantage over client-side rendered frameworks. Compared to WordPress, Gatsby typically delivers faster Core Web Vitals scores out of the box due to its image optimization pipeline and code splitting. The tradeoff is build time: large Gatsby sites with thousands of pages can have slow build cycles that delay new content from reaching search engines, a problem that Gatsby Cloud's incremental builds partially address.

Why are my Gatsby pages not getting indexed even after submitting the sitemap?

The most common causes are a stale sitemap cached by your CDN from a previous build, noindex meta tags applied globally by a plugin misconfiguration, canonical tags pointing to a staging domain, or the sitemap including URLs that return a non-200 status. Check the URL Inspection tool in Google Search Console for the specific page to see exactly what Googlebot is reading, then cross-reference with your Gatsby build output to find where the tag is being set incorrectly.

How do I add structured data to programmatically generated Gatsby pages?

Use the Gatsby Head API to export a Head component from each page template. Inside that component, render a script tag with type application/ld+json containing your JSON-LD object built from the page's GraphQL query data. For a blog post template, the GraphQL query pulls the title, author, publish date, and featured image URL, which you then insert into an Article schema object. This approach scales across every page generated from that template without duplicating code.

Does gatsby-plugin-sitemap include all pages automatically?

By default, gatsby-plugin-sitemap includes every page that Gatsby generates with a public URL. However, it does not automatically exclude pages with noindex meta tags, paginated archive pages, or preview routes. You need to configure the plugin's excludes array to filter out paths you do not want indexed, and you should cross-check the sitemap output against your Search Console coverage report after each major build to confirm no unwanted URLs are being submitted.

How does Gatsby's image optimization affect SEO?

The gatsby-plugin-image component automatically generates multiple image sizes, converts images to modern formats like WebP and AVIF, and adds width and height attributes that prevent layout shift. These changes directly improve Largest Contentful Paint and Cumulative Layout Shift scores, both of which are Core Web Vitals metrics that Google uses as ranking signals. The plugin does not generate alt text, so every image still requires a manually written descriptive alt attribute to satisfy both accessibility standards and image search indexing.

Can I use Gatsby with a headless CMS and still maintain full SEO control?

Yes. Gatsby's GraphQL data layer pulls content from any headless CMS that has a source plugin, including Contentful, Sanity, DatoCMS, and Prismic. SEO fields like meta title, meta description, canonical URL, and structured data can be defined as dedicated fields in your CMS content model and queried into your Gatsby Head API component at build time. This gives content editors direct control over SEO metadata without requiring code changes, while the Gatsby build ensures all metadata is rendered as static HTML in the final output.

What is the best way to handle pagination SEO in Gatsby?

For paginated archive pages generated by Gatsby's createPage API, set a canonical tag on page two and beyond pointing to the first page only if the content is substantially duplicated. If each paginated page contains unique content worth indexing, use self-referencing canonicals and add rel="next" and rel="prev" link tags in the Head component to signal the pagination relationship to crawlers. Avoid blocking paginated pages in robots.txt, as this prevents crawlers from following internal links to deeper content pages that you do want indexed.

How often should I rebuild my Gatsby site for SEO purposes?

Rebuild frequency should match your content publishing cadence. If you publish daily, configure your CMS to trigger an automatic Gatsby build on content publish events using a webhook. If you update content weekly, a scheduled nightly build ensures the sitemap stays current and any metadata changes are reflected in the static HTML. Avoid letting builds go stale for more than a week if you are actively adding or updating content, because crawlers will continue to see the old static HTML until a new build deploys.

Gatsby SEO automation — frequently asked

How do I connect Gatsby to AutoSEO?

AutoSEO has no dedicated Gatsby connector. You use the generic Custom webhook connector: a URL you own + a shared secret, and an endpoint you run does the final placement — that is the accurate description, not a one-click install.

Will AutoSEO change my existing Gatsby content?

Only what you ask it to. New articles are delivered on the cadence you choose — as drafts for review, or published straight away. Existing pages are audited and surfaced as recommendations first; nothing is rewritten in place until you turn that on.

How long until SEO automation shows results on Gatsby?

It depends on the domain, not the platform. An established site with existing authority usually sees movement on long-tail queries within weeks; a new domain in a competitive niche takes considerably longer. Publishing consistently is what compounds — which is the part automation actually fixes.

What does AutoSEO cost for a Gatsby site?

Plans are per site with volume discounts as you add more, and there is a trial. Current numbers are on the pricing page rather than repeated here, so they cannot go stale.

Can I keep my current Gatsby SEO tools?

Yes. AutoSEO is built to sit alongside what you already run rather than take over the page head — on WordPress it writes into your existing SEO plugin's fields instead of adding a competing set of tags, and on every platform it leaves the platform's own SEO settings alone.

Is there a Gatsby source plugin for AutoSEO?

No. Gatsby is served by the generic Custom webhook connector rather than a dedicated integration, and we would rather state that than imply a plugin exists.

Where should the handler write the article?

Wherever your build already sources from. If you use gatsby-source-filesystem, an MDX file in the repo; if you use a headless CMS, a record in it. The payload carries everything either needs.

Keep reading

Other platforms

Automate the recurring SEO work on Gatsby

Works alongside your existing Gatsby setup. See pricing for plans and the trial.

Connect Gatsby