Run the entire VTEX platform through AI.
👉 43 standalone Model Context Protocol servers exposing every public VTEX e-commerce API to AI assistants.
npx @vtex-mcp/catalog-apiSet credentials → connect Claude / Cursor / Kiro → done.
Each VTEX API group is its own MCP server — install only what you need via npx, configure credentials, and let any MCP-compatible AI client interact directly with your VTEX store.
All servers are auto-generated from official VTEX OpenAPI specifications, ensuring tools stay accurate and always in sync with the platform.
VTEX has 40+ API groups with hundreds of endpoints. Manually wiring them into an AI assistant is tedious, fragile, and hard to maintain.
This project solves that:
- One command to run any VTEX API as an MCP server
- 1,669 tools across catalog, orders, checkout, payments, logistics, and more
- Zero handwritten boilerplate — everything generated from OpenAPI
- Built-in validation + structured responses
- Credential sanitization (keys never leak in logs)
- Automate catalog operations via prompts
- Bulk update products and prices
- Build internal AI tooling for ops teams
- QA automation for VTEX stores
- AI-driven workflows and integrations
npx @vtex-mcp/catalog-apiexport VTEX_ACCOUNT_NAME=mystore
export VTEX_APP_KEY=vtexappkey-mystore-ABCDEF
export VTEX_APP_TOKEN=your-app-tokenClaude Desktop
{
"mcpServers": {
"vtex-catalog": {
"command": "npx",
"args": ["@vtex-mcp/catalog-api"],
"env": {
"VTEX_ACCOUNT_NAME": "mystore",
"VTEX_APP_KEY": "your-app-key",
"VTEX_APP_TOKEN": "your-app-token"
}
}
}
}Cursor
{
"mcpServers": {
"vtex-catalog": {
"command": "npx",
"args": ["@vtex-mcp/catalog-api"],
"env": {
"VTEX_ACCOUNT_NAME": "mystore",
"VTEX_APP_KEY": "your-app-key",
"VTEX_APP_TOKEN": "your-app-token"
}
}
}
}Kiro
{
"mcpServers": {
"vtex-catalog": {
"command": "npx",
"args": ["@vtex-mcp/catalog-api"],
"env": {
"VTEX_ACCOUNT_NAME": "mystore",
"VTEX_APP_KEY": "your-app-key",
"VTEX_APP_TOKEN": "your-app-token"
}
}
}
}Mix and match — add as many servers as you need. Each one is independent.
📖 Full client setup guide — Claude Desktop, Kiro, VS Code, Cursor, Windsurf, and HTTP transport.
If you want to fork, modify, or run the servers locally without npm:
# 1. Clone the repo
git clone https://github.com/v-hansen/vtex_mcps.git
cd vtex-mcp-servers
# 2. Install dependencies
pnpm install
# 3. Build everything
pnpm build
# 4. Run any server directly
node servers/catalog-api/dist/cli.jsThen point your MCP client to the local path instead of npx:
{
"mcpServers": {
"vtex-catalog": {
"command": "node",
"args": ["/absolute/path/to/vtex-mcp-servers/servers/catalog-api/dist/cli.js"],
"env": {
"VTEX_ACCOUNT_NAME": "mystore",
"VTEX_APP_KEY": "your-app-key",
"VTEX_APP_TOKEN": "your-app-token"
}
}
}
}This is useful if you want to:
- Customize tool behavior or add custom tools
- Use a private fork with internal modifications
- Test changes before publishing
- Run servers without depending on the npm registry
You can also regenerate any server after modifying the shared library or generator:
# Rebuild the generator
pnpm build --filter @vtex-mcp/generator
# Regenerate a specific server
npx vtex-mcp-generator \
--spec specs/catalog-api.json \
--output servers/catalog-api \
--name "@vtex-mcp/catalog-api" \
--server-name "VTEX Catalog API"
# Rebuild the server
pnpm build --filter @vtex-mcp/catalog-api| Variable | Required | Description |
|---|---|---|
VTEX_ACCOUNT_NAME |
Yes | Your VTEX account name |
VTEX_APP_KEY |
Yes* | App key from VTEX License Manager |
VTEX_APP_TOKEN |
Yes* | App token paired with the key |
VTEX_AUTH_TOKEN |
No | User token (alternative to key/token pair) |
VTEX_ENVIRONMENT |
No | API environment (default: vtexcommercestable) |
* Required unless VTEX_AUTH_TOKEN is provided.
Every server supports two transport modes:
| Mode | Flag | Use Case |
|---|---|---|
| stdio (default) | --transport stdio |
Local MCP clients (Claude Desktop, Cursor, Kiro) |
| HTTP/SSE | --transport http --port 3000 |
Remote deployment, multi-client scenarios |
# stdio (default)
npx @vtex-mcp/orders-api
# HTTP with custom port
npx @vtex-mcp/orders-api --transport http --port 808043 servers — click to expand full list
| Server | Package | Tools |
|---|---|---|
| Antifraud Provider | @vtex-mcp/antifraud-provider-api |
Antifraud provider integration |
| Brand | @vtex-mcp/brand-api |
Brand management |
| Catalog | @vtex-mcp/catalog-api |
Products, SKUs, categories, specs (193 tools) |
| Category | @vtex-mcp/category-api |
Category tree management |
| Checkout | @vtex-mcp/checkout-api |
Cart and checkout operations |
| CMS (Legacy) | @vtex-mcp/cms-legacy-portal-api |
Legacy CMS portal |
| Collection (Beta) | @vtex-mcp/collection-beta-api |
Product collections |
| Customer Credit | @vtex-mcp/customer-credit-api |
Customer credit management |
| Gift Card | @vtex-mcp/giftcard-api |
Gift card operations |
| Gift Card Hub | @vtex-mcp/giftcard-hub-api |
Gift card hub integration |
| Gift Card Provider | @vtex-mcp/giftcard-provider-protocol |
Gift card provider protocol |
| Headless CMS | @vtex-mcp/headless-cms-api |
Headless CMS content |
| Intelligent Search Events | @vtex-mcp/intelligent-search-events-api |
Search analytics |
| Inventory | @vtex-mcp/inventory-api |
Inventory management |
| License Manager | @vtex-mcp/license-manager-api |
Users, roles, permissions |
| Logistics | @vtex-mcp/logistics-api |
Shipping and logistics |
| Marketplace | @vtex-mcp/marketplace-api |
Marketplace operations |
| Master Data v2 | @vtex-mcp/master-data-api-v2 |
Master Data v2 |
| Master Data v10 | @vtex-mcp/master-data-api-v10 |
Master Data v10.2 |
| Message Center | @vtex-mcp/message-center-api |
Transactional messages |
| Orders | @vtex-mcp/orders-api |
Order management |
| Payment Provider | @vtex-mcp/payment-provider-protocol |
Payment provider integration |
| Payments | @vtex-mcp/payments-api |
Payment transactions |
| Payments Gateway | @vtex-mcp/payments-gateway-api |
Payment gateway |
| Pickup Points | @vtex-mcp/pickup-points-api |
Pickup point management |
| Policies System | @vtex-mcp/policies-system-api |
Policy management |
| Pricing | @vtex-mcp/pricing-api |
Price management |
| Promotions & Taxes | @vtex-mcp/promotions-and-taxes-api |
Promotions and tax rules |
| Rates and Benefits | @vtex-mcp/rates-and-benefits-api |
Rates and benefits |
| Returns | @vtex-mcp/returns-api |
Return invoices and order return info |
| Reviews and Ratings | @vtex-mcp/reviews-and-ratings-api |
Product reviews |
| Search | @vtex-mcp/search-api |
VTEX Intelligent Search |
| Session Manager | @vtex-mcp/session-manager-api |
Session management |
| Shipping Network | @vtex-mcp/shipping-network-api |
Shipping carriers |
| SKU Bindings | @vtex-mcp/sku-bindings-api |
SKU binding management |
| Specification | @vtex-mcp/specification-api |
Product specifications |
| Subscriptions | @vtex-mcp/subscriptions-api |
Subscription management |
| Suggestions | @vtex-mcp/suggestions-api |
Marketplace suggestions |
| Tax Service Provider | @vtex-mcp/tax-service-provider-protocol |
Tax service provider protocol |
| Tracking | @vtex-mcp/tracking-api |
Order tracking |
| VTEX DO | @vtex-mcp/vtex-do-api |
Task management |
| VTEX ID | @vtex-mcp/vtex-id-api |
Authentication and identity |
| Warehouse | @vtex-mcp/warehouse-api |
Warehouse management |
Each server has its own README.md with the full tool list. See servers/{api-group}/README.md.
graph TB
subgraph Monorepo
GEN["Code Generator<br/><code>packages/generator/</code>"]
SHARED["Shared Library<br/><code>packages/shared/</code>"]
SPECS["OpenAPI Specs<br/><code>specs/*.json</code>"]
end
subgraph "43 Generated MCP Servers"
S1["catalog-api"]
S2["orders-api"]
S3["checkout-api"]
SN["...38 more"]
end
CLIENT["AI Client<br/>Claude · Cursor · Kiro"]
VTEX["VTEX Platform<br/>https://{account}.vtexcommercestable.com.br"]
SPECS -->|input| GEN
GEN -->|generates| S1 & S2 & S3 & SN
SHARED -->|imported by| S1 & S2 & S3 & SN
CLIENT -->|"JSON-RPC 2.0<br/>stdio / SSE"| S1 & S2
S1 & S2 & S3 & SN -->|HTTPS| VTEX
- OpenAPI specs from VTEX's official repo are downloaded into
specs/ - The code generator parses each spec, converts JSON Schema to Zod validators, and scaffolds a complete MCP server package
- Each generated server registers tools with the MCP protocol, validates inputs, calls the VTEX API, and returns structured responses
- The shared library provides the HTTP client (with auth injection), error handling (with credential sanitization), and the MCP server factory
AI Client → tools/call { name, arguments }
→ Parameter validation (Zod)
→ VTEX API request (with auth headers)
→ Response formatting
→ AI Client receives structured result
vtex-mcp-servers/
├── packages/
│ ├── shared/ # HTTP client, auth, validation, error handling, MCP server factory
│ └── generator/ # OpenAPI spec → MCP server code generator
├── servers/ # 43 generated MCP server packages
├── specs/ # VTEX OpenAPI specification files
├── .github/
│ ├── workflows/ # CI (build + test) and publish (npm) workflows
│ ├── ISSUE_TEMPLATE/ # Bug report and feature request templates
│ └── PULL_REQUEST_TEMPLATE.md
├── docker-compose.yml # Run all 43 servers locally
├── package.json # Root workspace config
├── pnpm-workspace.yaml # Workspace package globs
└── tsconfig.base.json # Shared TypeScript config
# Clone and install
git clone https://github.com/v-hansen/vtex_mcps.git
cd vtex-mcps
pnpm install
# Build everything
pnpm build
# Run all 161 tests
pnpm test
# Lint and format
pnpm lint
pnpm formatnpx vtex-mcp-generator \
--spec specs/my-api.json \
--output servers/my-api \
--name "@vtex-mcp/my-api" \
--server-name "VTEX My API"cp .env.example .env
# Edit .env with your credentials
docker compose upSee CONTRIBUTING.md for the full development guide.
The project uses vitest for unit tests and fast-check for property-based tests, covering 15 formal correctness properties.
pnpm test # Run all 161 tests across all packages
pnpm test --watch # Watch mode for development| Package | Tests | Coverage |
|---|---|---|
@vtex-mcp/shared |
67 (8 unit + property test files) | Config, HTTP client, errors, validation, server factory |
@vtex-mcp/generator |
80 (6 unit + property test files) | Parser, schema converter, tool generator, package generator |
@vtex-mcp/catalog-api |
14 (integration tests) | JSON-RPC conformance, tools/list, error propagation, pagination |
We welcome contributions. See CONTRIBUTING.md for guidelines on:
- Adding new MCP servers
- Coding standards and naming conventions
- Testing requirements (unit + property-based)
- Pull request process
If you discover a security vulnerability, please see SECURITY.md for responsible disclosure instructions. Do not open a public issue.
MIT — use it however you want.