Get the AI-integration kit (AI installs it)
autoseo_integration_kitInstall a live blog by obtaining the integration kit: webhook contract, HMAC verification, code templates, and install steps. Specify renderMode and stack for matching templates.
Instructions
The "AI installs it" tool — installs a FULLY WORKING, appears-live blog end-to-end. Fetch the AutoSEO integration kit: the receiving-endpoint contract (request/response shape and the HMAC signature-verification algorithm), ready-to-adapt code template(s) for the given stack, and plain-English install instructions. Call this right after autoseo_connect_site with kind "webhook": read the returned files, adapt them to the user's real codebase (their framework, language and folder conventions), write them yourself, and tell the user to deploy. Pass renderMode to control whether the blog appears LIVE or needs a rebuild: "ssr-db" (default, recommended) writes to the site's own database and SSR-renders from it on every request — new posts appear immediately, no rebuild; "ssr-hosted" is the fastest install (zero database — the article stays hosted at TimeToPost and the site only adds an SSR route that fetches it live); "static-mdx" is the legacy MDX-file mode — NOT live, only appears after the site's next build/deploy, prefer one of the other two unless the site already has an MDX pipeline. Pass stack (e.g. "nextjs", "express", "rails", "django", "php", "static") when you know the target site's framework to get a matching template (Next.js/Express get full write + SSR render templates for ssr-db/ssr-hosted); omit it for the generic HTTP contract plus a Node/Express reference implementation and stack-agnostic SSR guidance. Not needed for kind "wp_rest" sites — those have nothing to install. Follow up with autoseo_verify_site once deployed. CAPABILITY: read — side-effect-free.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Connector kind to fetch the kit for; defaults to "webhook" | |
| stack | No | Target framework/language hint, e.g. "nextjs", "express", "rails", "django", "php", "static" | |
| renderMode | No | "ssr-db" (default, recommended): SSR from the site's own DB, appears live. "ssr-hosted": zero DB, fastest install, appears live by fetching from TimeToPost's public read API. "static-mdx": legacy, writes an MDX file — NOT live until the next rebuild/deploy. |