Skip to main content
VT

VTEX

v0.2.1OAuth2

Plataforma de e-commerce enterprise: pedidos, catálogo, inventario, pricing y fulfillment. Tu agente gestiona todo el ciclo de vida de la tienda.

33 herramientas1 env vars🇧🇷 Brasilestable en npm

Qué puede hacer tu agente

VTEX le da a tu agente 33 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.

  • list_productsList products from VTEX catalog
  • get_productGet product details by ID
  • create_productCreate a new product in the VTEX catalog
Ejemplo de llamada
// 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", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-vtex

Quickstart

Agregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).

claude_desktop_config.json
{
  "mcpServers": {
    "vtex": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-vtex"
      ],
      "env": {
        "VTEX_APP_TOKEN": "<your_vtex_app_token>"
      }
    }
  }
}

Después de reiniciar, tu agente puede llamar cualquiera de las 33 herramientas de abajo — probá list_products primero.

Variables de entorno · 1

Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.

VTEX_APP_TOKEN
obligatoriosecret

API key for vtex

Herramientas disponibles · 33

Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.

READlist_products
List products from VTEX catalog
READget_product
Get product details by ID
WRITEcreate_product
Create a new product in the VTEX catalog
WRITEupdate_product
Update an existing product in the VTEX catalog
READlist_skus
List SKUs for a product
WRITEcreate_sku
Create a new SKU for a product
READlist_categories
List all categories with pagination
WRITEcreate_category
Create a new category in the catalog

Frameworks compatibles

MCP es un protocolo — cualquier framework que lo hable puede montar este server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Cualquier cliente MCPProtocolo

Preguntas frecuentes

Corré `npx -y @codespar/mcp-vtex` y agregá el bloque de config de arriba a tu cliente MCP — Claude, Cursor, VS Code o cualquier cliente compatible con MCP. Sin build, sin SDK. ¿Preferís hosted? El tier gestionado de CodeSpar lo corre por vos, con la auth resuelta.
VTEX — MCP server · 33 tools | CodeSpar