npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@codespar/mcp-vtex

v0.2.1

Published

MCP server for VTEX — e-commerce, orders, products, inventory, shipping

Readme

@codespar/mcp-vtex

MCP server for VTEX — e-commerce platform with catalog, orders, inventory, and promotions

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "vtex": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-vtex"],
      "env": {
        "VTEX_ACCOUNT_NAME": "your-account",
        "VTEX_APP_KEY": "your-app-key",
        "VTEX_APP_TOKEN": "your-app-token"
      }
    }
  }
}

Claude Code

claude mcp add vtex -- npx @codespar/mcp-vtex

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "vtex": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-vtex"],
      "env": {
        "VTEX_ACCOUNT_NAME": "your-account",
        "VTEX_APP_KEY": "your-app-key",
        "VTEX_APP_TOKEN": "your-app-token"
      }
    }
  }
}

Tools (33)

| Tool | Purpose | |---|---| | list_products | List products from VTEX catalog | | get_product | Get product details by ID | | create_product | Create a new product in the VTEX catalog | | update_product | Update an existing product in the VTEX catalog | | list_skus | List SKUs for a product | | create_sku | Create a new SKU for a product | | list_categories | List all categories with pagination | | create_category | Create a new category in the catalog | | get_catalog | Get the catalog category tree | | list_orders | List orders with optional filters | | get_order | Get full OMS order details by ID | | update_order_status | Transition an order to the handling state (start fulfillment) | | invoice_order | Issue a fiscal invoice (nota fiscal) for an order | | track_order_invoice | Update tracking info for a previously issued invoice | | cancel_order | Cancel an order | | list_customer_orders | List order history for a customer (filtered by email) | | get_sku_price | Get pricing details for an SKU (base price, list price, markup, cost, fixed prices per trade policy) | | update_sku_price | Update base/list/cost price for an SKU | | list_price_tables | List all configured price tables (trade policies) | | get_inventory | Get inventory/stock for a SKU across warehouses | | update_inventory | Update inventory quantity for a SKU at a specific warehouse | | get_shipping_rates | Simulate shipping rates for items to a postal code | | list_warehouses | List all warehouses configured in the account | | create_warehouse | Register a new warehouse (fulfillment center) | | create_promotion | Create a promotion/discount in VTEX | | list_coupons | List all promotion coupons | | create_coupon | Create a promotion coupon code | | list_subscriptions | List customer subscriptions | | create_subscription | Create a recurring subscription for a customer (VTEX Subscriptions) | | get_masterdata_document | Get a document (customer profile, custom entity) from VTEX Master Data v2 | | search_masterdata | Search documents in a Master Data entity | | create_giftcard | Create a gift card for a customer (GiftCard Hub) | | get_giftcard | Get gift card details by ID |

Authentication

VTEX uses app key and app token headers for API authentication.

Sandbox / Testing

VTEX provides sandbox access via partner accounts. Contact VTEX for developer access.

Get your credentials

  1. Go to VTEX Developer Portal
  2. Access your VTEX admin or create a partner account
  3. Generate an app key and app token from License Manager
  4. Set the environment variables

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | VTEX_ACCOUNT_NAME | Yes | VTEX account name | | VTEX_APP_KEY | Yes | API app key | | VTEX_APP_TOKEN | Yes | API app token | | VTEX_ENVIRONMENT | No | Environment host slug (default vtexcommercestable) |

Roadmap

v0.3 (planned)

  • Checkout / cart session management
  • Marketplace seller and offer management
  • Carrier (shipping policy) registration

Want to contribute? Open a PR or request a tool.

Links

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT