Plataforma de e-commerce de LatAm: productos, pedidos, clientes y webhooks. Tu agente construye y opera tiendas online en toda la región.
Tienda Nube le da a tu agente 24 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
list_products — List products from the storeget_product — Get product details by IDcreate_product — Create a new product// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("list_products", { /* ... */ });$ npm install @codespar/mcp-tienda-nubeAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"tienda-nube": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-tienda-nube"
],
"env": {
"TIENDANUBE_ACCESS_TOKEN": "<your_tiendanube_access_token>",
"TIENDANUBE_STORE_ID": "<your_tiendanube_store_id>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 24 herramientas de abajo — probá list_products primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
TIENDANUBE_ACCESS_TOKENAccess token for Tienda Nube
TIENDANUBE_STORE_IDStore identifier
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
list_productsget_productcreate_productupdate_productlist_ordersget_orderlist_customersget_customerMCP es un protocolo — cualquier framework que lo hable puede montar este server.