ColourPop
LiveVerifiedAffordable cosmetics brand with a verified live UCP endpoint for AI-powered beauty shopping.
ColourPop Cosmetics has a live UCP endpoint served through their Shopify-powered store. Known for affordable, trend-forward makeup, ColourPop's UCP endpoint enables AI agents to discover products and facilitate purchases.
Why This Matters for UCP
ColourPop is a verified live UCP merchant, demonstrating how affordable cosmetics brands participate in agentic commerce through Shopify UCP.
UCP Capabilities
UCP Endpoint
https://colourpop.com/.well-known/ucpLiveIntegration Example
// 1. Discover ColourPop's UCP manifest and capabilities
const resp = await fetch('https://colourpop.com/.well-known/ucp');
const { ucp } = await resp.json();
// 2. Connect via MCP transport for product browsing
const mcpEndpoint = ucp.services['dev.ucp.shopping']
.find(s => s.transport === 'mcp')?.endpoint;
// → "http://colourpop.com/api/ucp/mcp"
// 3. Initialize an MCP client session
import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StreamableHTTPClientTransport } from '@modelcontextprotocol/sdk/client/streamableHttp.js';
const client = new Client({ name: 'shopping-agent', version: '1.0.0' });
await client.connect(new StreamableHTTPClientTransport(
new URL(mcpEndpoint)
));
// 4. Browse products via MCP tools
const products = await client.callTool({
name: 'search_products',
arguments: { query: 'bestsellers', limit: 10 }
});
// 5. Initiate checkout (requires UCP identity token)
const checkout = await client.callTool({
name: 'create_checkout',
arguments: {
items: [{ product_id: 'PRODUCT_ID', quantity: 1 }],
identity_token: consumerToken
}
});
// Supports: checkout, fulfillment tracking, discount codes
// Accepts: Google Pay (Visa, MC, Amex, Discover) + Shopify CardCategory
MerchantsUCP Status
LiveTags
Pricing
paid
Related Guides
Reviews
★★★★★4.7 (3 reviews)These are illustrative examples to show what reviews will look like. Submit your own experience below.
R. Kapoor
Ecommerce Architect · Jan 15, 2026
Tested this against three other UCP merchants. Response times are consistently under 300ms. The capability flags match what actually works.
A. Hassan
Platform Engineer · Mar 12, 2026
Integrated in an afternoon. The discovery endpoint just worked. Payment token exchange is well-implemented — clean schema, no surprises.
T. Chen
Full-Stack Developer · Feb 10, 2026
Used this as the reference implementation while building our own UCP endpoint. The checkout flow is exactly what the spec describes.
102 other tools in Merchants
Is this your tool? Claim this listing
Compare ColourPop with other tools
Related Merchants
Allbirds
Merchants
Sustainable footwear built for the planet.
Sustainable footwear and apparel brand with a verified live UCP endpoint on their Shopify store.
Integrations