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

@miguel-carrera/vtex-account-mcp-server

v0.1.0

Published

Read-only MCP server for inspecting VTEX account configuration

Readme

vtex-account-mcp-server

Read-only MCP server for inspecting a live VTEX account's configuration. Used by the vtex-inspector skill in the AI Atlas Claude plugin.

Authentication

This server authenticates using the VTEX CLI session — no API keys needed.

Every tool accepts an account parameter (the VTEX account name, e.g. mystore). The token for that account is read on every call from:

~/.vtex/session/tokens.json   →  { accountName: jwtToken, ... }

The token is sent as the VtexIdclientAutCookie header on every request, exactly as the VTEX CLI does. Token reads happen on every tool call, so refreshes are picked up automatically.

Before calling a tool for an account, make sure you are logged in:

vtex login <account-name>

Tools

| Tool | Domain | Returns | |------|--------|---------| | vtex_get_account_info | Account | Company name, stores, appTokens | | vtex_get_stores | Account | Store bindings and hostnames | | vtex_get_warehouses | Logistics | All warehouses with docks and hours | | vtex_get_docks | Logistics | All docks with carriers and processing time | | vtex_get_shipping_policies | Logistics | Carriers and SLAs | | vtex_get_pickup_points | Logistics | Pickup points with address and hours | | vtex_get_delivery_capacity | Logistics | Scheduled window capacity per carrier | | vtex_get_category_tree | Catalog | Department → category hierarchy | | vtex_get_brands | Catalog | All brands with active status | | vtex_get_sales_channels | Catalog | Trade policies / sales channels | | vtex_get_catalog_summary | Catalog | Product and SKU count (paginated) | | vtex_get_promotions | Promotions | All promotions with type and conditions | | vtex_get_price_tables | Pricing | Price tables with rules | | vtex_get_coupons | Promotions | Active coupons with usage stats | | vtex_get_price_table_mapping | Pricing | Audience → price table mapping | | vtex_get_payment_affiliations | Payments | Connected gateway connectors | | vtex_get_payment_rules | Payments | Payment conditions per method | | vtex_get_installments | Payments | Installment options | | vtex_get_orderform_config | Checkout | orderForm config and custom apps | | vtex_get_affiliates | Integrations | Connected marketplaces | | vtex_get_order_hook_config | Integrations | OMS webhook configuration | | vtex_get_subscription_settings | Subscriptions | Global subscription feature config | | vtex_get_subscription_plans | Subscriptions | Subscription plans and frequencies |

Requirements

  • Node.js 18+
  • VTEX CLI installed and logged in

Installation

npm install -g @miguel-carrera/vtex-account-mcp-server

Or use directly with npx (no install needed):

npx @miguel-carrera/vtex-account-mcp-server

Add to Claude (.mcp.json)

{
  "mcpServers": {
    "vtex-account": {
      "command": "npx",
      "args": ["-y", "@miguel-carrera/vtex-account-mcp-server"]
    }
  }
}

No credentials in the config — the server reads them from the VTEX CLI session.

Development

git clone https://github.com/miguel-carrera/vtex-account-mcp-server.git
cd vtex-account-mcp-server
npm install

# Watch mode (no build step needed)
npm run dev

# Rebuild after changes
npm run build