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

# Use DNC LATAM with AI

> Give an AI assistant current DNC LATAM API context without sharing credentials or customer phone numbers.

DNC LATAM publishes human-readable documentation and machine-readable context
for AI coding assistants.

<CardGroup cols={2}>
  <Card title="Install the Agent Skill" icon="box-archive" href="#install-the-agent-skill">
    Give compatible coding agents a reusable integration workflow and safety rules.
  </Card>

  <Card title="Copy the integration prompt" icon="copy" href="/ai/prompt">
    Use one prompt in ChatGPT, Claude, Codex, Cursor, or another assistant.
  </Card>

  <Card title="Connect the docs MCP" icon="plug" href="#connect-the-documentation-mcp">
    Let compatible agents search the latest published documentation on demand.
  </Card>

  <Card title="Read llms.txt" icon="file-lines" href="#direct-context-files">
    Give an AI a compact index or the full documentation context.
  </Card>
</CardGroup>

## Install the Agent Skill

Compatible AI coding tools can discover and install the DNC LATAM API skill
from the documentation domain:

```bash theme={null}
npx skills add https://docs.dnclatam.com
```

The skill teaches the agent how to:

* Build server-side scrubbing integrations.
* Use Bearer authentication and idempotency correctly.
* Interpret every response category.
* Handle rate limits, quotas, conflicts, and temporary capacity.
* Preserve zero data retention in code, logs, tests, and prompts.
* Use the live OpenAPI document instead of inventing fields.

The discovery manifest is published at:

```text theme={null}
https://docs.dnclatam.com/.well-known/agent-skills/index.json
```

## Connect the documentation MCP

Mintlify publishes a read-only documentation search MCP server:

```text theme={null}
https://docs.dnclatam.com/mcp
```

For Codex CLI, add this to `~/.codex/config.toml`:

```toml theme={null}
[mcp_servers.dnc_latam_docs]
url = "https://docs.dnclatam.com/mcp"
```

For Claude Code:

```bash theme={null}
claude mcp add --transport http DNC-LATAM https://docs.dnclatam.com/mcp
```

The MCP server helps agents retrieve current public documentation. It does not
need a DNC LATAM API key.

## Direct context files

| Resource                                           | Purpose                                                |
| -------------------------------------------------- | ------------------------------------------------------ |
| `/llms.txt`                                        | Compact documentation index with page descriptions.    |
| `/llms-full.txt`                                   | Complete published documentation in one text resource. |
| `/.well-known/agent-skills/dnc-latam-api/skill.md` | Canonical Agent Skill with the current API contract.   |
| `https://api.dnclatam.com/openapi.json`            | Live OpenAPI 3.1 contract.                             |

## Privacy rules for AI use

<Warning>
  Public documentation is safe to give an AI. Live API keys and customer phone
  numbers are not. Never paste them into chat, attach production payloads, or
  let an assistant echo them in generated logs.
</Warning>

Use placeholders such as:

```text theme={null}
dnc_live_YOUR_KEY
+52 55 1234 5678
```

Run real requests only from your own controlled environment.
