initializdocs

Ask AI and machine-readable docs

The Ask AI assistant, the MCP endpoint for AI clients, and the machine-readable doc surfaces (llms.txt, markdown routes).

These docs are built to be read by AI as well as by people.

The Ask AI assistant

The Ask AI button on any docs page opens an assistant that answers questions about the platform. It answers only from these docs: every answer is grounded in retrieved doc sections and cites its sources with links that jump to the exact section. If the docs don't cover a question, it says so and suggests the closest pages instead of guessing.

Ask AI may be disabled in some deployments. When the docs index is temporarily unavailable, the assistant declines to answer rather than answering without sources.

MCP endpoint for AI clients

The docs expose a read-only MCP server over Streamable HTTP at /api/mcp, so AI tools can search these docs with the same retrieval the Ask AI assistant uses.

Add it to Claude Code:

claude mcp add --transport http initializ-docs https://docs.initializ.ai/api/mcp

Available tools:

ToolWhat it does
search_docsSemantic search; returns ranked sections with a url that links to the exact heading
get_doc_pageReturns the full markdown of one page by its /docs/... path

Markdown and index surfaces

  • Append .md to any page URL to get its raw markdown (for example /docs/cli.md).
  • /llms.txt — a curated index of every page with a one-line description, grouped by section.
  • /llms-full.txt — the full content of all pages in one document.
  • Every page header has Copy Markdown and Open in actions for ChatGPT, Claude, and other tools.

On this page