npx nuxt module add ai-readynpm i nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
yarn add nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
pnpm i nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
bun i nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
Nuxt AI Ready requires a Nuxt SEO Pro license.
NUXT_SEO_PRO_KEY=your-license-key-hereSign in to see your license key.
Zero-config module. After installation:
.md suffix (e.g., /about.md) to see markdown outputnuxi build then check /llms.txt and /llms-full.txt/robots.txt shows Content SignalsConnect AI agents to your site via Model Context Protocol:
npx nuxi module add @nuxtjs/mcp-toolkit
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
'@nuxtjs/mcp-toolkit',
],
})
Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"my-site": {
"command": "npx",
"args": ["-y", "@nuxtjs/mcp-client", "http://localhost:3000/mcp"]
}
}
}
See the MCP guide for tools, resources, and production setup.
Works best with prerendering. Feature availability by mode:
| Feature | SSG | Hybrid | SSR-only | SPA |
|---|---|---|---|---|
| llms.txt with titles | ✅ | ✅ | ✅ | ❌ |
| llms-full.txt | ✅ | ✅ Prerendered only | ❌ Placeholder | ❌ |
Runtime .md routes | ✅ | ✅ | ✅ | ❌ |
| MCP tools/resources | ✅ | ✅ Partial | ❌ Empty | ❌ |
SSG: Full support. All pages processed during nuxi generate.
Hybrid: Page data only for prerendered pages.
SSR-only: No page data generated. Runtime .md routes work.
SPA: Not supported. Workaround: enable nitro.prerender.routes for specific pages.