# Resources

> MCP resources and reference documentation for the Storefront system

Canonical URL: https://fa7e86e3d553:3005/resources

This section covers the MCP resources available in the Lexsis Storefront
system. These resources provide the schemas, catalogs, and reference data
needed to author valid source-format pages.

## Available Resources

- [Generation Guide](/resources/generation-guide) — Complete system context for generating pages
- [Island Catalog](/resources/island-catalog) — Generated interactive-island catalog with current props and usage hints
- [Icon Catalog](/resources/icon-catalog) — 60+ icons organized by category for trust badges and UI elements

## Resource URIs

All resources are accessed via the MCP resource read protocol with `vibe://` URIs:

```typescript
// Generation guide
vibe://docs/generation-guide

// Island catalog (all islands)
vibe://catalog/islands

// Individual island spec
vibe://catalog/islands/BuyBox

// Icon catalog
vibe://catalog/icons

// Page schema
vibe://schema/page
```

## When to Read Resources

**Read resources when:**
- Starting a new page generation
- Need to discover available islands or icons
- Debugging validation errors
- Building tools that work with page JSON

**Don't re-read when:**
- Making small edits to existing pages
- You've already loaded the resource in the current session
- Working with static HTML without islands
