BuzzRank Gatsby Integration
Connect in 2 minutes
BuzzRank integrates seamlessly with your existing workflow. No coding required.
BuzzRank + Gatsby: Static Site SEO Automation
Gatsby is a blazing-fast static site generator. But managing SEO for 100s of pages (meta tags, schema, internal links) is tedious.
BuzzRank automates SEO workflows for Gatsby:
✅ Auto-generate meta tags from GraphQL queries
✅ Bulk create FAQ and Article schema
✅ Suggest internal links based on keyword overlap
✅ Generate XML sitemaps automatically
Installation
npm install --save gatsby-plugin-buzzrank
gatsby-config.js:
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-buzzrank`,
options: {
apiKey: process.env.BUZZRANK_API_KEY,
autoMetaTags: true,
autoSchema: true,
},
},
],
}
Use Cases
Use Case 1: Blog Post Meta Tags
Problem: 200 MDX blog posts without meta descriptions.
Solution: BuzzRank reads frontmatter + content, generates meta tags via GraphQL.
Result: 200 posts SEO-optimized in 10 minutes.
Use Case 2: Programmatic SEO Pages
Problem: Generating 500 city pages for local SEO.
Solution: Use BuzzRank + Gatsby templates to create pages from JSON data.
Result: 500 pages live in 1 day, all with unique meta tags + schema.
GraphQL Example
query {
allBuzzrankSeoData {
nodes {
slug
metaTitle
metaDescription
schema
}
}
}
Render in Component:
import { Helmet } from "react-helmet"
export default ({ data }) => (
<>
<Helmet>
<title>{data.metaTitle}</title>
<meta name="description" content={data.metaDescription} />
<script type="application/ld+json">{data.schema}</script>
</Helmet>
{/* Page content */}
</>
)
FAQ
Q: Does BuzzRank work with Gatsby Cloud?
Yes. BuzzRank integrates via GraphQL. Deploy to Gatsby Cloud, Netlify, or Vercel.
Q: Can I use BuzzRank with MDX?
Yes. BuzzRank reads frontmatter from MDX files and generates meta tags automatically.
Q: Is this plugin free?
Yes. Included in all BuzzRank plans ($100/mo+).
Ready to automate SEO for your Gatsby site? Try BuzzRank free →
Frequently Asked Questions
Does BuzzRank work with Gatsby Cloud?▼
Can I use BuzzRank with MDX?▼
Is this plugin free?▼
Connect in 2 minutes
BuzzRank integrates seamlessly with your existing workflow. No coding required.