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 with all server rendering modes:
| Feature | SSG | Hybrid | SSR-only | SPA |
|---|---|---|---|---|
| llms.txt with titles | ✅ | ✅ | ✅ | ❌ |
| llms-full.txt | ✅ | ✅ Prerendered only | ❌ Placeholder | ❌ |
Runtime .md routes | ✅ | ✅ | ✅ | ❌ |
| MCP tools/resources | ✅ | ✅ | ✅ Indexed on visit | ❌ |
| FTS5 search | ✅ | ✅ | ✅ | ❌ |
SSG: Full support. All pages indexed during nuxi generate.
Hybrid: Prerendered pages indexed at build; SSR pages indexed on first visit.
SSR-only: Pages indexed on first visit. MCP search works after pages are visited.
SPA: Not supported. Workaround: enable nitro.prerender.routes for specific pages.