# Agent Instructions — LT Forged

This document describes how AI agents can interact with LT Forged's online store at https://www.ltforgedwheels.com.

## Brand

- Name: LT Forged
- Entity: LT Forged LLC
- Region: California, United States
- Email: info@ltforgedwheels.com
- Launch: Summer 2026

## What we make

Custom forged wheels for performance vehicles. Each wheel is forged from a single billet of 6061-T6 aluminum (or magnesium on request), CNC-machined to the customer's specifications, finished, and inspected before shipping. Every set is made to order for one specific vehicle. 8 to 12 weeks from build confirmation.

## Commerce Protocol (UCP)

This store implements the [Universal Commerce Protocol](https://ucp.dev) for agent-driven commerce.

### Discovery

```
GET https://www.ltforgedwheels.com/.well-known/ucp
```

Returns the store's UCP merchant profile: supported versions, service endpoints, capabilities, and payment handlers.

### MCP Endpoint

```
POST https://www.ltforgedwheels.com/api/ucp/mcp
Content-Type: application/json
```

Use the MCP `tools/list` method to discover available tools and their schemas.

### Typical Agent Flow

1. **Discover** — `GET /.well-known/ucp` to confirm capabilities
2. **Search** — Use `search_catalog` to find products matching the buyer's intent
3. **Cart** — Use `create_cart` to add desired items
4. **Checkout** — Use `create_checkout` to start the purchase flow
5. **Fulfill** — Use `update_checkout` to set shipping address and method
6. **Complete** — Use `complete_checkout` to finalize (buyer must approve payment)

## Reference

- llms.txt: https://www.ltforgedwheels.com/llms.txt
- Sitemap: https://www.ltforgedwheels.com/sitemap.xml
- Catalog: https://www.ltforgedwheels.com/collections/wheels
- Contact: info@ltforgedwheels.com
