# The Investor Hat Shop

After decades of AI research — transformers, GPT-4, AGI debates — we have arrived at a historic milestone.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add masonicgit/shop-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list masonicgit/shop-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get masonicgit/shop-mcp search_products

# Call a tool
npx -y @smithery/cli@latest tool call masonicgit/shop-mcp search_products '{}'
```

## Direct MCP Connection

Endpoint: `https://shop-mcp--masonicgit.run.tools`

## Tools (5)

- `search_products` — Search the hat catalog by keyword. Returns product IDs, titles, variant IDs, and prices in USDC. Use this first to find…
- `get_product` — Get full details for a specific product including all size/color variants and their prices in USDC.
- `get_quote` — Get a USDC price quote for a product variant including real shipping cost. Returns a quote_id, total USDC amount, and t…
- `place_order` — Place a fully paid physical order. You must first call get_quote, then send the exact USDC amount on Base to the paymen…
- `get_order_status` — Check the fulfillment status of an existing order. Returns financial status, fulfillment status, and creation timestamp.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get masonicgit/shop-mcp <tool-name>
```

## Resources

- `https://shop.masonborda.com` — Browse the full hat catalog at shop.masonborda.com.
- `https://mcp.masonborda.com/llms.txt` — Full API documentation in llms.txt format for AI agents.

## Prompts (2)

- `buy_a_hat` (hat_type, shipping_address) — End-to-end prompt to guide an agent through browsing, quoting, paying, and ordering a hat.
- `check_catalog` — List all available hats with prices in USDC.
