Setup Module
npx nuxt module add nuxt-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',
],
})
!TIP Generate an Agent Skill for this package using skilld:
npx skilld add 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.
Verifying Installation
Zero-config module. After installation:
- Visit any route with
.mdsuffix (e.g.,/about.md) to see markdown output - Run
nuxi buildthen check/llms.txtand/llms-full.txt /robots.txtshows Content Signals
Configuration
MCP Integration (Optional)
Connect 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.
Rendering Mode Support
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 | ✅ | ✅ | ✅ | ❌ |
| IndexNow | ✅ Build-time | ✅ Both | ✅ Runtime | ❌ |
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.
Next Steps
- Content Signals — Configure AI training/search permissions
- llms.txt Guide — Customize llms.txt output
- MCP Guide — Tools and resources for AI agents
- IndexNow — Instant search engine notifications
- Runtime Indexing — Database, TTL, and search configuration
- Cloudflare Deployment — Deploy with D1 database