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

# Tools Overview

> All 6 AI tools that power ARIS.

# AI Tools Reference

ARIS has 6 built-in AI tools that power its conversational capabilities. These tools are available through the widget, REST API, and MCP server.

The AI engine automatically selects the right tool based on each user message. You don't need to call tools directly when using the widget or `/v1/chat` — intent classification handles routing. For MCP and custom integrations, you can call tools explicitly.

## Tool summary

<CardGroup cols={2}>
  <Card title="Property Search" icon="magnifying-glass" href="/docs/tools/property-search">
    "Show me homes in Austin" — Searches MLS listings by criteria
  </Card>

  <Card title="Property Details" icon="file-text" href="/docs/tools/property-details">
    "Tell me about this listing" — Gets details and compares properties
  </Card>

  <Card title="Mortgage Calculator" icon="calculator" href="/docs/tools/mortgage-calculator">
    "What's the monthly payment?" — Estimates payments based on terms
  </Card>

  <Card title="Schedule Viewing" icon="calendar" href="/docs/tools/schedule-viewing">
    "I'd like to see this house" — Captures showing requests
  </Card>

  <Card title="Neighborhood Info" icon="map-pin" href="/docs/tools/neighborhood-info">
    "How are the schools there?" — Context about location, schools, walkability
  </Card>

  <Card title="Compare Properties" icon="git-compare" href="/docs/tools/compare-properties">
    "Compare these two homes" — Side-by-side comparison
  </Card>
</CardGroup>

## Intent → Tool mapping

When a message arrives at `/v1/chat`, the AI classifies it and routes:

| Intent              | Tool(s) used                     |
| ------------------- | -------------------------------- |
| `property_search`   | Property Search                  |
| `property_question` | Property Details                 |
| `comparison`        | Compare Properties               |
| `affordability`     | Mortgage Calculator              |
| `scheduling`        | Schedule Viewing                 |
| `location_info`     | Neighborhood Info                |
| `general_question`  | (AI knowledge, no tool)          |
| `follow_up`         | Previous context + relevant tool |
| `contact_info`      | Lead capture                     |
| `small_talk`        | (AI conversational)              |
