---
title: AI Overview
sidebarTitle: AI Overview
description: Jamdesk includes AI Chat, llms.txt, and an MCP server on every docs site. Use AI tools like Claude Code, Cursor, and Codex to write and maintain documentation.
---

When developers ask AI about your product, the AI often works from stale training data or can't access your docs at all. Every Jamdesk build generates three AI endpoints — `llms.txt`, an MCP server, and raw Markdown URLs — so AI tools can read your current docs directly, without scraping HTML. Your visitors also get a built-in chat assistant that answers questions directly from your docs.

This section covers those endpoints, the built-in AI chat, and how to set up AI tools to write and maintain your documentation.

## How It Works

<Steps>
  <Step title="Write MDX">
    Create documentation pages in Markdown with optional React components.
  </Step>
  <Step title="Push and Build">
    Jamdesk builds your site and generates AI endpoints alongside your HTML.
  </Step>
  <Step title="AI Tools Connect">
    Claude, Cursor, ChatGPT, and other tools can access your docs via llms.txt, MCP, or raw Markdown URLs.
  </Step>
</Steps>

## AI Features

Every Jamdesk site includes these AI features automatically:

<Columns cols={2}>
  <Card title="AI Chat" icon="comment" href="/ai/chat">
    Built-in chat assistant — visitors ask questions, get citation-backed answers
  </Card>
  <Card title="llms.txt" icon="file-lines" href="/ai/llms-txt">
    Auto-generated page index and full-content dump
  </Card>
  <Card title="MCP Server" icon="robot" href="/ai/mcp-server">
    `searchDocs` and `getPage` tools over JSON-RPC
  </Card>
  <Card title="Markdown Source" icon="file-code" href="/ai/markdown-source">
    Append `.md` to any URL for raw Markdown source
  </Card>
</Columns>

## Writing Docs with AI

<Columns cols={2}>
  <Card title="Claude Code" icon="terminal" href="/ai/claude-code">
    CLAUDE.md template and MCP connection setup
  </Card>
  <Card title="Claude Code Plugin" icon="puzzle-piece" href="/claude-code-plugin">
    Component, config, navigation, and CLI reference for Claude
  </Card>
  <Card title="Cursor" icon="text-cursor" href="/ai/cursor">
    Inline editing rules and `.cursor/mcp.json` config
  </Card>
  <Card title="Codex" icon="code" href="/ai/codex">
    AGENTS.md template for cloud-based doc generation
  </Card>
  <Card title="Writing with AI" icon="wand-magic-sparkles" href="/ai/writing-with-ai">
    Effective prompts, review checklists, and common pitfalls
  </Card>
  <Card title="Automated Updates" icon="rotate" href="/ai/automated-updates">
    The `/update-jamdesk` skill — auto-generate docs from code changes
  </Card>
</Columns>
