Oak & Ivory is the sample retail MCP App that ships with Metabind. It demonstrates the patterns most product MCP Apps will share — a Data Tool that searches a catalog, an Interactive Tool that renders product details, and a layout component reused across multiple Tools. This page walks through what’s in it and why each piece exists.Documentation Index
Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
Use this file to discover all available pages before exploring further.
What Oak & Ivory does
Oak & Ivory exposes two MCP tools to a connected AI host:| Tool | Type | Purpose |
|---|---|---|
product_search | Data Tool | Searches the catalog by keyword and returns structured product data |
product_detail | Interactive Tool | Renders a single product as a native card, with image, title, price, and call-to-action |
product_search returns JSON, product_detail returns native UI.
Get the sample
Two ways:- In MCP App Studio onboarding. When you create a new project, choose Oak & Ivory as the starter. MCP App Studio provisions the components, Types, and sample data.
- From a template. In an existing organization, click New project → Use template → Oak & Ivory.

What’s in the project
product_search handler would point at your real catalog.
How product_search works
The Data Tool’s handler is intentionally simple — fetch a sample API, return the JSON:
env.apiBaseURL with their own API base, add auth via env.secrets, and likely transform the response shape. The patterns are what generalize: schema validation, V8 sandbox, output validation, sandbox limits.
See Sandboxed execution for the runtime model.
How product_detail works
The Interactive Tool is bound to the ProductCard component. Its input schema mirrors the component’s properties:
product_detail with a product, the platform:
- Validates the input against the schema.
- Compiles
ProductCard’s BindJS layout against the input. - Returns an MCP UI resource the host renders natively.
@bindjs/renderer.
Sub-component reuse
ProductCard is composed from smaller pieces — ProductImage, ProductTitle, ShopButton, ReviewsSection. These are normal BindJS components in the project, available as building blocks for other layouts.
If you add a product_compare tool that shows three products side-by-side, you could write a ProductCompare layout that reuses ProductTitle and ProductImage. The sub-components carry the styling, hover states, and accessibility through.
Component allowlist
The project’s allowed-components list includes the six components above. If a new MCP App reused this package and added aLandingHero layout, the project palette would need to grow to include it before the layout could reference it.
See Component allowlists.
Connecting Oak & Ivory to Claude Desktop
Once the sample is in your account:- Click Connect in the project sidebar.
- Pick Claude Desktop.
- Copy the config and paste it into your Claude Desktop config file. See Connect to Claude Desktop.
product_search, picks the top result, then calls product_detail to render it. You see a native product card inline in the conversation.
Embedding Oak & Ivory in your own app
To embed the same tools in a custom app via the Assistant SDK, see Assistant SDK overview. Point the SDK at the Oak & Ivory project, configure your LLM provider, and ship. The sameproduct_search and product_detail calls work, with the rendered cards showing up as native SwiftUI / Compose / React.
Customizing Oak & Ivory
Once Oak & Ivory is in your account, it’s a real project — modify it freely:- Replace the sample API. Point
product_searchat your real catalog and add an API key secret. - Restyle the components. Edit
ProductCard, change colors, change layout. - Add new tools. A
cart_add, awishlist_save, arecommendationsData Tool. Each becomes another Type. - Publish. When you’re done, publish the package — it’s now your own MCP App.
Related
Your first MCP App
The end-to-end tutorial that uses Oak & Ivory.
Build an Interactive Tool
The pattern
product_detail follows.Build a Data Tool
The pattern
product_search follows.Connect to Claude Desktop
Try Oak & Ivory’s tools in a real host.