Sneaker Carousel MCP App
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sneaker Carousel MCP AppShow me the sneaker carousel to browse and choose a size."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sneaker Carousel MCP App
Demo portable de MCP Apps para mostrar en Claude: carrusel de zapatillas, selección de talle/cantidad y botón de pago simulado.
Qué demuestra
Un tool visible para el modelo:
show-sneaker-carousel.Un recurso
ui://sneaker-drop/carousel.htmlrenderizado por el host.HTML, CSS y JavaScript empaquetados en un único archivo.
Una llamada UI → host → servidor mediante
app.callServerTool().Un tool privado para la UI:
prepare-demo-checkout.Validación autoritativa de producto, talle y total en el servidor.
Adaptación al tema y tipografías del host.
El pago es una simulación. No solicita tarjeta ni procesa dinero.
Related MCP server: Amazon MCP Server
Ejecutar localmente
Requisitos: Node.js 20 o superior.
npm install
npm run build
npm startEndpoint MCP:
http://localhost:3001/mcpHealth check:
http://localhost:3001/Vista previa del carrusel sin un host MCP:
http://localhost:3001/previewProbar con el basic-host oficial
En otra carpeta:
git clone https://github.com/modelcontextprotocol/ext-apps.git
cd ext-apps
npm install
SERVERS='["http://localhost:3001/mcp"]' npm startAbrí http://localhost:8080, elegí show-sneaker-carousel y ejecutá el tool.
Deploy con Docker
docker build -t sneaker-mcp-app .
docker run --rm -p 3001:3001 sneaker-mcp-appPodés desplegar el Dockerfile en Railway, Render, Fly.io, Cloud Run o ECS. El servicio debe quedar públicamente accesible por HTTPS.
Ejemplo final:
https://tu-dominio.example/mcpConectarlo a Claude
Desplegá el proyecto con HTTPS.
En Claude abrí Customize / Connectors.
Elegí Add custom connector.
Pegá
https://tu-dominio.example/mcp.Para esta demo, seleccioná conexión sin autenticación si Claude ofrece esa opción.
En un chat, activá el conector y escribí:
Mostrame el carrusel de zapatillas y ayudame a elegir una.Claude debería llamar show-sneaker-carousel y renderizar la MCP App dentro de la conversación.
Checkout externo opcional
Si definís:
DEMO_CHECKOUT_URL=https://example.com/checkoutel servidor devolverá esa URL y la MCP App pedirá al host abrirla. Para una integración real, generá una URL única de checkout en el backend y confirmá el pago por webhook. No confíes en el monto enviado por la interfaz.
Estructura
.
├── main.ts # servidor HTTP/stdio
├── server.ts # tools y recurso MCP App
├── mcp-app.html # entrada de la UI
├── src/
│ ├── mcp-app.ts # comportamiento del carrusel y checkout
│ └── styles.css # estilos responsivos
├── Dockerfile
└── render.yamlSolución de problemas
outputSchema no acepta z.object(...)
Esta versión usa @modelcontextprotocol/ext-apps 1.7.4 junto con el SDK MCP 1.29.0. Los helpers del servidor terminan delegando en la API Zod del SDK 1.x, por lo que los schemas de salida se pasan como shapes:
outputSchema: StoreOutputSchema.shaperoot is possibly null
El elemento raíz se valida una vez y luego se guarda con tipo HTMLElement, de modo que TypeScript conserva el tipo dentro de callbacks.
Cannot find module dist/main.js
dist/main.js se genera recién cuando npm run build termina correctamente. Ejecutá:
rm -rf dist
npm run build
npm startAvisos de npm audit
Los avisos de auditoría no causan los errores de compilación. Revisalos con:
npm audit
npm audit fix
npm run buildNo ejecutes npm audit fix --force sin revisar los cambios, porque puede instalar actualizaciones mayores incompatibles.
Compatibilidad con Claude
La UI primero lee structuredContent. Como fallback de compatibilidad, también puede recuperar el catálogo y la orden desde un payload JSON marcado dentro de content. Esto permite que la demo siga renderizando en hosts que no reenvían structuredContent al iframe.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/McpStorefront/mcp-apps-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server