Tienda Nube MCP Server

121 tools. 59 can modify or destroy data without limits.

13 destructive tools with no built-in limits. Policy required.

Last updated:

59 can modify or destroy data
62 read-only
121 tools total

Community server · catalogue entry verified 02/07/2026

How to control Tienda Nube MCP Server ↓

What Tienda Nube MCP Server exposes to your agents

Read (62) Write / Execute (46) Destructive / Financial (13)
Critical Risk

The most dangerous Tienda Nube MCP Server tools

59 of Tienda Nube MCP Server's 121 tools can modify, destroy, or commit something on every call — and an agent calls them with no built-in limits.

How to control Tienda Nube MCP Server

PolicyLayer is an MCP gateway — it sits between your AI agents and Tienda Nube MCP Server, and nothing reaches the server without passing your rules. These are the rules we recommend:

Block financial tools by default
{
  "tiendanube_create_transaction": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Requires human approval."
      }
    ]
  }
}

Financial tools should be explicitly enabled per use case, not open by default.

Deny destructive operations
{
  "tiendanube_clear_cart": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Blocked by default. Requires approval."
      }
    ]
  }
}

Destructive tools should never be available to autonomous agents without human approval.

Rate limit write operations
{
  "tiendanube_add_cart_item": {
    "limits": [
      {
        "counter": "tiendanube_add_cart_item_per_hour",
        "window": "hour",
        "max": 30,
        "scope": "grant"
      }
    ]
  }
}

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
{
  "tiendanube_generate_checkout_sdk_template": {
    "limits": [
      {
        "counter": "tiendanube_generate_checkout_sdk_template_per_minute",
        "window": "minute",
        "max": 60,
        "scope": "grant"
      }
    ]
  }
}

Controls API costs and prevents retry loops from exhausting upstream rate limits.

  1. Create a free account and register Tienda Nube MCP Server — nothing to install.
  2. Add these rules — paste them, or build them visually. Tune the limits to your setup.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
ENFORCE POLICY ON TIENDA NUBE →

Instant setup, no code required.

All 121 Tienda Nube MCP Server tools

WRITE 44 tools
Write tiendanube_add_cart_item ADD CART ITEM - Add a variant to the cart (by id or token) with the desired quantity. Write tiendanube_add_coupon_to_abandoned_checkout ➕ ADD COUPON TO ABANDONED CHECKOUT - Add a discount coupon to an abandoned checkout. Write tiendanube_apply_cart_coupon APPLY CART COUPON - Apply a discount coupon code to the cart. Write tiendanube_cancel_order ❌ CANCEL ORDER - Cancel an existing order and optionally specify the cancellation reason. Use this for order c Write tiendanube_close_order CLOSE ORDER - Close (archive) an order. Write tiendanube_confirm_draft_order CONFIRM DRAFT ORDER - Confirm a draft order and convert it to a regular order. Write tiendanube_create_business_rule Create a new business rule for filtering products, customers, or orders Write tiendanube_create_category ➕ CREATE NEW CATEGORY - Create a new product category with multi-language support and hierarchical organizatio Write tiendanube_create_coupon ➕ CREATE NEW COUPON - Create promotional discount coupons for marketing campaigns and customer incentives. Use Write tiendanube_create_customer ➕ CREATE NEW CUSTOMER - Create a new customer account with complete profile information. Use this for customer Write tiendanube_create_draft_order CREATE DRAFT ORDER - Create a new draft order (quote) with customer and product information. Write tiendanube_create_fulfillment_event Create a tracking event for a fulfillment order Write tiendanube_create_fulfillment_order Create a new fulfillment order for specific line items Write tiendanube_create_invoice CREATE INVOICE - Create an invoice for an order. Write tiendanube_create_metafield CREATE METAFIELD - Create a metafield for a given owner resource/id. Write tiendanube_create_order ➕ CREATE NEW ORDER - Create a new order programmatically with complete customer and product information. Use t Write tiendanube_create_product Create a new product in the store. At minimum requires name and price. Supports multiple languages, variants, Write tiendanube_create_product_custom_field Create a new product custom field Write tiendanube_create_product_image Create/add a new image to a product. Write tiendanube_create_product_variant Create a new variant for a product (price, stock, sku, etc.) Write tiendanube_create_product_variant_custom_field Create a new product variant custom field Write tiendanube_create_webhook ➕ CREATE NEW WEBHOOK - Set up real-time event notifications for external system integrations. Use this to esta Write tiendanube_mark_order_as_paid MARK ORDER AS PAID - Mark an order as paid. Write tiendanube_reopen_order REOPEN ORDER - Reopen a previously closed order. Write tiendanube_update_business_rule Update an existing business rule Write tiendanube_update_cart_item_quantity UPDATE CART ITEM QTY - Update line item quantity by item_id or variant_id (fallback removes+adds). Write tiendanube_update_category ✏️ UPDATE CATEGORY - Modify existing category information including names, descriptions, and hierarchy relatio Write tiendanube_update_category_custom_fields UPDATE CATEGORY CUSTOM FIELDS - Replace or set custom fields for a category. Write tiendanube_update_coupon ✏️ UPDATE COUPON - Modify existing discount coupon settings including discount value, validity period, usage l Write tiendanube_update_customer ✏️ UPDATE CUSTOMER - Modify existing customer information including personal details, contact information, and Write tiendanube_update_dispute Update a dispute status and provide response with evidence Write tiendanube_update_fulfillment_order Update an existing fulfillment order Write tiendanube_update_metafield UPDATE METAFIELD - Update a metafield value by ID. Write tiendanube_update_order ✏️ UPDATE ORDER - Modify specific fields of an existing order. Use this to update order status (open/closed/ca Write tiendanube_update_order_custom_fields UPDATE ORDER CUSTOM FIELDS - Replace or set custom fields for an order. Write tiendanube_update_product Update an existing product. All fields are optional except product_id. Only provided fields will be updated. Write tiendanube_update_product_custom_field Update an existing product custom field Write tiendanube_update_product_custom_field_values Associate or disassociate custom field values with a specific product Write tiendanube_update_product_image Update product image properties (src, position, alt). Write tiendanube_update_product_variant Update an existing variant for a product. Write tiendanube_update_product_variant_custom_field Update an existing product variant custom field Write tiendanube_update_product_variant_custom_field_values Associate or disassociate custom field values with a specific product variant Write tiendanube_update_script_tag UPDATE SCRIPT TAG - Update the URL or event of a script tag. Write tiendanube_update_webhook ✏️ UPDATE WEBHOOK - Modify existing webhook configuration including endpoint URL and event type. Use this for
READ 62 tools
Read tiendanube_generate_checkout_sdk_template Generate a Checkout SDK integration template (script tag + skeleton code and guidance). Read tiendanube_get_abandoned_checkout 🔎 GET ABANDONED CHECKOUT - Retrieve a single abandoned checkout by ID, including customer, items and totals. Read tiendanube_get_business_rule Get details of a specific business rule Read tiendanube_get_cart GET CART - Retrieve a shopping cart by numeric id or token. Returns items, totals and metadata. Read tiendanube_get_category 🔍 GET SPECIFIC CATEGORY - Retrieve complete details for a single product category by its unique ID. Use this Read tiendanube_get_category_custom_fields GET CATEGORY CUSTOM FIELDS - Retrieve all custom fields for a category. Read tiendanube_get_checkout GET CHECKOUT - Retrieve checkout by ID, including items, customer, totals and status. Read tiendanube_get_coupon 🔍 GET SPECIFIC COUPON - Retrieve complete details for a single discount coupon by its unique ID. Use this whe Read tiendanube_get_custom_field_owners List products associated with a specific custom field Read tiendanube_get_customer 🔍 GET SPECIFIC CUSTOMER - Retrieve complete details for a single customer by their unique ID. Use this when y Read tiendanube_get_discount GET DISCOUNT - Retrieve a discount by ID. Read tiendanube_get_dispute Get details of a specific dispute Read tiendanube_get_draft_order GET DRAFT ORDER - Retrieve a single draft order by ID. Read tiendanube_get_fulfillment_order Get details of a specific fulfillment order Read tiendanube_get_invoice GET INVOICE - Retrieve an invoice for an order. Read tiendanube_get_location GET LOCATION - Retrieve a single location by ID. Read tiendanube_get_metafield GET METAFIELD - Retrieve a single metafield by ID. Read tiendanube_get_order 🔍 GET SPECIFIC ORDER - Retrieve complete details for a single order by its unique ID. Use this when you need Read tiendanube_get_order_custom_fields GET ORDER CUSTOM FIELDS - Retrieve all custom fields for a specific order. Read tiendanube_get_order_edit_history GET ORDER EDIT HISTORY - Retrieve a log of all changes made to an order. Read tiendanube_get_order_fulfillment 📦 GET ORDER FULFILLMENT - Retrieve detailed fulfillment and shipping information for a specific order. Use th Read tiendanube_get_order_transaction GET ORDER TRANSACTION - Retrieve a single transaction by order and transaction IDs. Read tiendanube_get_order_value_history GET ORDER VALUE HISTORY - Get a history of an order Read tiendanube_get_payment_option GET PAYMENT OPTION - Retrieve a payment option by ID. Read tiendanube_get_payment_provider GET PAYMENT PROVIDER - Retrieve a provider by ID. Read tiendanube_get_product Get detailed information about a specific product by ID, including variants, images, categories, and all metad Read tiendanube_get_product_custom_field Get details of a specific product custom field by ID Read tiendanube_get_product_variant Get a specific variant of a product by ID. Read tiendanube_get_product_variant_custom_field Get details of a specific product variant custom field by ID Read tiendanube_get_script_tag GET SCRIPT TAG - Retrieve a single script tag by ID. Read tiendanube_get_shipping_carrier GET SHIPPING CARRIER - Retrieve a single carrier by ID. Read tiendanube_get_store_info Get basic information about the authenticated store including name, plan, configuration, and available feature Read tiendanube_get_store_settings Get extended store settings including languages, design, features and domains (from /store). Read tiendanube_get_variant_custom_field_owners List product variants associated with a specific custom field Read tiendanube_get_webhook 🔍 GET SPECIFIC WEBHOOK - Retrieve complete details for a single webhook configuration by its unique ID. Use t Read tiendanube_list_abandoned_checkouts 🧾 LIST ABANDONED CHECKOUTS - Retrieve paginated abandoned checkouts with filters. Use to analyze recovery opp Read tiendanube_list_business_rules List all business rules with filtering options Read tiendanube_list_categories 📂 LIST ALL CATEGORIES - Retrieve a hierarchical list of product categories with filtering and localization su Read tiendanube_list_coupons 🎫 LIST ALL COUPONS - Retrieve a comprehensive list of discount coupons with advanced filtering options. Use t Read tiendanube_list_customers 👥 LIST ALL CUSTOMERS - Retrieve a paginated list of store customers with filtering and search capabilities. U Read tiendanube_list_discounts LIST DISCOUNTS - Retrieve store discounts (read-only). Read tiendanube_list_disputes List all disputes with filtering options Read tiendanube_list_draft_orders LIST DRAFT ORDERS - Retrieve paginated draft orders (quotes) with optional date filters. Read tiendanube_list_fulfillment_orders List all fulfillment orders for a specific order with filtering options Read tiendanube_list_locations LIST LOCATIONS - Retrieve store locations with pagination and date filters. Read tiendanube_list_metafields LIST METAFIELDS - List metafields, optionally filtered by owner_resource and owner_id. Read tiendanube_list_order_transactions LIST ORDER TRANSACTIONS - Retrieve transactions for a given order. Read tiendanube_list_orders 📋 LIST ALL ORDERS - Retrieve a paginated list of store orders with comprehensive filtering capabilities. Use Read tiendanube_list_payment_options LIST PAYMENT OPTIONS - Dedicated endpoint for payment options. Read tiendanube_list_payment_providers List available payment providers configured in the store (extracted from /store). Read tiendanube_list_payment_providers_dedicated LIST PAYMENT PROVIDERS - Dedicated endpoint for payment providers. Read tiendanube_list_product_custom_fields List all product custom fields with pagination support Read tiendanube_list_product_images List all images for a product. Read tiendanube_list_product_variant_custom_fields List all product variant custom fields with pagination support Read tiendanube_list_product_variants List all variants for a given product, including price, stock and SKU. Read tiendanube_list_products List all products in the store with optional filtering, pagination, and sorting. Supports filtering by categor Read tiendanube_list_script_tags LIST SCRIPT TAGS - Retrieve all script tags registered by the app. Read tiendanube_list_shipping_carriers LIST SHIPPING CARRIERS - Retrieve shipping carriers configured for the store. Read tiendanube_list_shipping_providers List available shipping providers configured in the store (extracted from /store). Read tiendanube_list_webhooks 🔗 LIST ALL WEBHOOKS - Retrieve all configured webhook endpoints for real-time event notifications. Use this f Read tiendanube_search_customers 🔎 SEARCH CUSTOMERS - Find customers using text search across names, emails, and identification numbers. Use t Read tiendanube_search_products Search for products using a text query. Supports pagination and filtering by category and publication status.

Related servers

Other MCP servers with similar tools — same risk classification, starter policies for each.

Questions about Tienda Nube MCP Server

Can an AI agent move money through the Tienda Nube MCP Server MCP server? +

Yes. The Tienda Nube MCP Server server exposes 2 financial tools including tiendanube_create_transaction, tiendanube_create_transaction_event. Without a policy, an autonomous agent can call these with no spend caps, no rate limits, and no approval flow. PolicyLayer lets you block financial tools by default, require human approval, or set per-tool rate limits — enforced on every call.

Can an AI agent delete data through the Tienda Nube MCP Server MCP server? +

Yes. The Tienda Nube MCP Server server exposes 11 destructive tools including tiendanube_clear_cart, tiendanube_delete_business_rule, tiendanube_delete_category. These permanently remove resources with no undo. PolicyLayer blocks destructive tools by default so they never reach the upstream server.

How do I prevent bulk modifications through Tienda Nube MCP Server? +

The Tienda Nube MCP Server server has 44 write tools including tiendanube_add_cart_item, tiendanube_add_coupon_to_abandoned_checkout, tiendanube_apply_cart_coupon. Set a rate limit in your policy -- for example, 10 calls per hour prevents an agent from making more than 10 modifications per hour. PolicyLayer enforces this at the gateway, before calls reach Tienda Nube MCP Server.

How many tools does the Tienda Nube MCP Server MCP server expose? +

121 tools across 3 categories: Destructive, Read, Write. 62 are read-only. 59 can modify, create, or delete data.

How do I enforce a policy on Tienda Nube MCP Server? +

Register the Tienda Nube MCP Server MCP server in PolicyLayer, apply the suggested rules above (adjust the limits to your use case), and point your AI client at the PolicyLayer proxy URL instead of the server directly. Your agents keep the same tools; PolicyLayer evaluates every call against policy before it executes. Nothing to install, live in minutes.

Enforce policy on every Tienda Nube MCP Server tool call.

Deterministic rules across all 121 Tienda Nube MCP Server tools. Per-identity grants. Full audit log. Live in minutes. Nothing to install.

Instant setup, no code required.

121 Tienda Nube MCP Server tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.