Publishing this blog with an MCP server
Seed post — replace with your own. This is clearly-marked sample content, and doubles as the article published through the automation pipeline demo.
This site exposes its own MCP server. That means an assistant like Claude can connect to it directly and operate the blog: create a draft, edit it, schedule it, and publish — which commits Markdown to the repo and triggers a rebuild.
The pipeline
- Draft —
posts.draftcreates a new Markdown file withdraft: true. - Review — the draft renders on a preview deploy; edits go through
posts.edit. - Publish —
posts.publishflipsdrafttofalseand commits. - Deploy —
deploy.triggerkicks a rebuild;deploy.statusreports back.
No third-party SaaS automation sits in the middle — just the site’s MCP server,
git, and a schedule. See /docs/automation.md for the exact recipe.