> ## Documentation Index
> Fetch the complete documentation index at: https://docs.animam.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Make your website's intent queryable by any LLM

## Welcome to Animam

Animam makes your website's intent queryable by any LLM. Three channels, one source of truth: **Widget** for humans, **API** for integrations, **MCP** for AI agents.

## The Problem

Today, when an LLM wants information about your website:

1. It **scrapes** your HTML
2. It **parses** as best it can
3. It **hallucinates** what it can't find
4. It **gets outdated** (periodic crawling)

**Result**: Approximate answers, no author intent, stale data.

## The Animam Solution

```
┌─────────────────────────────────────────────────────────────┐
│                    CURRENT PARADIGM                          │
├─────────────────────────────────────────────────────────────┤
│   LLM ──scrape──▶ HTML ──parse──▶ ??? ──guess──▶ 🤷         │
└─────────────────────────────────────────────────────────────┘

                         ↓ ANIMAM ↓

┌─────────────────────────────────────────────────────────────┐
│                    AGENTIC WEB PARADIGM                      │
├─────────────────────────────────────────────────────────────┤
│   LLM ──question──▶ API/MCP ──intent──▶ Accurate answer ✓  │
└─────────────────────────────────────────────────────────────┘
```

## Three Channels, One Source

<CardGroup cols={3}>
  <Card title="Widget" icon="comments">
    For your website visitors. Embed on any page. Answers questions instantly.
  </Card>

  <Card title="REST API" icon="code">
    For your integrations. Any LLM can query your chatbot programmatically.
  </Card>

  <Card title="MCP Server" icon="robot">
    For AI agents. Claude Desktop & AI agents connect directly.
  </Card>
</CardGroup>

Your knowledge base powers everything. Same content, same persona, everywhere.

## Why Animam?

<CardGroup cols={2}>
  <Card title="5-minute deployment" icon="rocket">
    One line of HTML code. No complex configuration.
  </Card>

  <Card title="Powered by Claude" icon="brain">
    Anthropic's Claude AI. Natural and contextual responses.
  </Card>

  <Card title="API-first" icon="terminal">
    Complete REST API, scoped tokens, MCP server for Claude Code.
  </Card>

  <Card title="GDPR compliant" icon="shield-check">
    Data hosted in Europe. Your content is never used to train models.
  </Card>
</CardGroup>

## Use Cases

| AI Agent       | Action                 | Without Animam           | With Animam             |
| -------------- | ---------------------- | ------------------------ | ----------------------- |
| Perplexity     | "What are X's prices?" | Scrapes, parses, guesses | Calls API, exact answer |
| Claude Desktop | "Help me with X"       | Reads HTML, hallucinates | Connects via MCP        |
| ChatGPT        | "Compare X and Y"      | Outdated data            | Real-time query         |
| Custom agent   | Automation             | Fragile, maintenance     | Stable API              |

## Getting Started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="play" href="/quickstart">
    Deploy your first chatbot in 5 minutes
  </Card>

  <Card title="For AI Agents" icon="robot" href="/for-llms/overview">
    How LLMs can query your chatbot
  </Card>

  <Card title="API Reference" icon="book" href="/api-reference/introduction">
    Explore the complete REST API
  </Card>

  <Card title="MCP Server" icon="terminal" href="/mcp/introduction">
    Integrate with Claude Code
  </Card>
</CardGroup>
