Enterprise e-commerce platform: orders, catalog, inventory, pricing, and fulfillment. Your agent manages the full storefront lifecycle.
VTEX gives your agent 33 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_products β List products from VTEX catalogget_product β Get product details by IDcreate_product β Create a new product in the VTEX catalog// 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-vtexAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"vtex": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-vtex"
],
"env": {
"VTEX_APP_TOKEN": "<your_vtex_app_token>"
}
}
}
}After restart, your agent can call any of the 33 tools below β try list_products first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
VTEX_APP_TOKENAPI key for vtex
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_productsget_productcreate_productupdate_productlist_skuscreate_skulist_categoriescreate_categoryMCP is a protocol β any framework that speaks it can mount this server.