LatAm e-commerce platform: products, orders, customers, and webhooks. Your agent builds and operates online stores across the region.
Tienda Nube gives your agent 24 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
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-nubeAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"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>"
}
}
}
}After restart, your agent can call any of the 24 tools below β try list_products first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
TIENDANUBE_ACCESS_TOKENAccess token for Tienda Nube
TIENDANUBE_STORE_IDStore identifier
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_productsget_productcreate_productupdate_productlist_ordersget_orderlist_customersget_customerMCP is a protocol β any framework that speaks it can mount this server.