Learn more about what it means to be AI Ready in the introduction.
Install the dependency and add it to your Nuxt config.
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 Search requires a Nuxt SEO Pro license.
NUXT_SEO_PRO_KEY=your-license-key-hereSign in to see your license key.
Connect AI agents like Claude to your site via Model Context Protocol:
npx nuxi module add @nuxtjs/mcp-toolkit
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
'@nuxtjs/mcp-toolkit',
],
})
Then 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 full details on tools, resources, and dev vs production differences.
Nuxt AI Ready works as a zero-config module, so no additional setup is required beyond installation.
Verify features by checking:
.md to the URL (e.g., /about.md). You should see the markdown version of that page.Perform a production build and test the features:
/robots.txt shows your Content-Signal./llms.txt and /llms-full.txt are generated after build with appropriate content.