← Back to search

woo-mcp-server

yurimlima Scanned 3d ago

Model Context Protocol (MCP) server for WooCommerce — 80+ tools, resources, and prompts for AI agents

npm
C
71.2 / 100

Versions

1.1.0latest
Jul 8, 2026
1.0.0
Jul 7, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 87

woo_products_list
annotations: none low

Lists products from the WooCommerce catalog with pagination. Default detail=summary uses a slim `_fields` projection (no HTML descriptions/images) to cut tokens and memory — use detail=full or woo_products_get when you need the complete product. Returns product objects plus pagination metadata.

tag string order enum
woo_products_get
annotations: none low

Retrieves a single product by its numeric ID, including prices, stock, images, categories, and attributes. Use this when you already know the product ID and need full details for editing, display, or diagnostics.

id number
woo_products_create
annotations: none low

Creates a new product in the WooCommerce catalog. Use this to add simple or variable products with pricing, descriptions, categories, and images. Returns the created product object including the new ID.

id number
woo_products_update
annotations: none low

Updates an existing product by ID. Only fields you provide are changed (partial update). Use this for price changes, stock adjustments, description edits, or status transitions without re-sending the full product.

id number
woo_products_delete
annotations: none low

Deletes a product by ID. By default force=true permanently deletes; set force=false to move to trash when supported. Use this for catalog cleanup or removing test products.

id number
woo_products_search
annotations: none low

Searches products by a free-text query matching name, SKU, and description fields. Default detail=summary uses a slim `_fields` projection. Returns paginated matching products.

woo_products_batch
annotations: none low

Performs multiple product create, update, and/or delete operations in a single API call. Use this for bulk catalog imports, mass price updates, or multi-item cleanup to reduce round-trips and respect rate limits.

woo_categories_list
annotations: none low

Lists product categories with pagination and optional parent filter. Use this to understand catalog taxonomy, build navigation, or assign products to the correct category IDs.

parent number search string hide_empty boolean
woo_categories_get
annotations: none low

Retrieves a single product category by ID. Use this when you need the full category record including description, image, and product count.

id number
woo_categories_create
annotations: none low

Creates a new product category, optionally nested under a parent. Use this when structuring or expanding the store catalog taxonomy.

id number
woo_categories_update
annotations: none low

Updates an existing product category by ID. Use this to rename categories, fix slugs, re-parent nodes, or update descriptions for SEO.

id number
woo_categories_delete
annotations: none low

Deletes a product category by ID. Products are not deleted; they simply lose this category assignment. force=true permanently deletes.

id number force boolean
woo_settings_groups_list
annotations: none low

Lists WooCommerce settings groups (general, products, tax, shipping, checkout, account, email, advanced, etc.). Use this to discover which setting groups exist before reading or updating options.

woo_settings_list
annotations: none low

Lists all setting options within a settings group (e.g. general, products). Use this to inspect current store configuration values such as currency, country, or tax display.

woo_settings_get
annotations: none low

Retrieves a single setting option by group and option ID. Use this when you need the current value and metadata (type, default, options) for one configuration key.

group string
woo_settings_update
annotations: none low

Updates a single setting option value. Use this carefully for configuration changes such as currency, store address, or tax display — always confirm intent with the user for production stores.

id string group string
woo_orders_list
annotations: none low

Lists store orders with pagination and optional filters for status, date range, and customer. Default detail=summary uses a slim `_fields` projection to cut tokens/memory — use detail=full or woo_orders_get for complete addresses/meta. Returns order objects plus pagination metadata.

order enum product number
woo_orders_get
annotations: none low

Retrieves a single order by ID including line items, billing/shipping, totals, and status history fields. Use this for support tickets, fulfillment, or when an order number is already known.

id number
woo_orders_create
annotations: none low

Creates a new order with optional customer, line items, addresses, and payment fields. Use this to place orders on behalf of customers, seed test data, or automate checkout-like flows from an agent.

id number
woo_orders_update
annotations: none low

Updates an existing order by ID (status changes, notes, addresses, line items). Use this for fulfillment transitions (e.g. processing → completed), address corrections, or partial refunds workflows that only need field updates.

id number
woo_orders_delete
annotations: none low

Deletes an order by ID. force=true permanently deletes; force=false moves to trash. Use carefully for test cleanup or GDPR-style removal when appropriate policies allow.

id number force boolean
woo_orders_notes_list
annotations: none low

Lists notes attached to a specific order (customer-visible and private staff notes). Use this when reviewing order history, support context, or audit trails for a single order.

order_id number
woo_orders_notes_create
annotations: none low

Adds a note to an order. Set customer_note=true to show it to the customer (email may be triggered by WC). Use this to document support actions or notify customers of fulfillment updates.

note string order_id number
woo_orders_batch
annotations: none low

Runs multiple order create/update/delete operations in one batch request. Use this for bulk status updates (e.g. mark many orders completed) or mass test-data management while minimizing API calls.

order_id number
woo_orders_refunds_list
annotations: none low

Lists refunds issued against a specific order. Use this for support lookups, finance reconciliation, or before creating another partial refund so you do not double-refund.

order_id number
woo_orders_refunds_get
annotations: none low

Retrieves a single refund by ID for an order, including amount, reason, and line items. Use when you have a refund ID from a list or webhook.

id number order_id number
woo_orders_refunds_create
annotations: none low

Creates a full or partial refund on an order. Prefer amount for simple money refunds; use line_items for item-level restocks. api_refund=true attempts payment gateway refund when supported. Use carefully — this mutates order money and may email the customer.

id number reason string order_id number quantity number
woo_orders_refunds_delete
annotations: none low

Deletes a refund record from an order. force=true is required by WooCommerce for permanent delete. Use mainly for test cleanup; production finance policies often disallow removing refund history.

id number force boolean order_id number
woo_tax_rates_list
annotations: none low

Lists configured tax rates with pagination and optional filters. Use this to audit regional tax setup or find rate IDs before updates.

class string country string
woo_tax_rates_get
annotations: none low

Retrieves a single tax rate by ID. Use this when you need the full rate record including location and class details.

id number
woo_tax_rates_create
annotations: none low

Creates a new tax rate for a location and optional tax class. Use this when expanding into new regions or adding reduced/zero rates.

id number
woo_tax_rates_update
annotations: none low

Updates an existing tax rate by ID. Use this when tax legislation changes or location matching needs correction.

id number
woo_tax_rates_delete
annotations: none low

Deletes a tax rate by ID. Use this to remove obsolete regional rates. force=true permanently deletes.

id number force boolean
woo_tax_classes_list
annotations: none low

Lists tax classes (standard, reduced-rate, zero-rate, and custom). Use this when assigning tax classes to products or configuring class-specific rates.

woo_tax_classes_get
annotations: none low

Retrieves a tax class by slug. Use this to confirm a class exists before assigning it to products or rates.

woo_reports_sales
annotations: none low

Fetches the WooCommerce sales report for a period or custom date range, including totals, averages, and order counts. Use this for revenue dashboards, period comparisons, or answering “how much did we sell last month?”.

woo_reports_top_sellers
annotations: none low

Returns the top-selling products for a period with quantities sold. Use this to identify bestsellers, plan restocks, or build merchandising recommendations.

woo_reports_orders_totals
annotations: none low

Returns order counts grouped by status (pending, processing, completed, etc.). Use this for operational dashboards and backlog visibility without listing every order.

woo_reports_customers_totals
annotations: none low

Returns customer counts by role or segment totals exposed by WooCommerce. Use this for a quick snapshot of the customer base size without paging through all customer records.

woo_reports_products_totals
annotations: none low

Returns product counts by type (simple, variable, etc.). Use this for catalog composition analysis and inventory planning at a high level.

woo_reports_coupons_totals
annotations: none low

Returns coupon usage/count totals from the reports API. Use this to measure promotion adoption without listing every coupon record.

woo_reports_reviews_totals
annotations: none low

Returns product review counts by status (approved, hold, spam, etc.). Use this to monitor moderation backlog and review health.

woo_system_status_get
annotations: none low

Fetches WooCommerce system status (environment, database, plugins, theme, security). Default detail=summary returns a slim health report suitable for agents; use detail=full for the complete payload (often 50–200KB+). Optionally pass `sections` to include only specific top-level keys.

woo_system_status_tools_list
annotations: none low

Lists available WooCommerce system tools (clear transients, recount terms, regenerate thumbnails, etc.). Use this to discover maintenance actions before running one.

woo_system_status_tools_run
annotations: none low

Runs a WooCommerce system maintenance tool by ID (e.g. clear_transients). Use this only when the user explicitly requests a maintenance action — these can be destructive or slow on large stores.

woo_usage_stats
annotations: none low

Returns token/usage statistics for this MCP server session: estimated tool-response tokens and any model (LLM) usage reports recorded by a host bridge (e.g. Anthropic). Use after multi-step agent work to audit cost.

woo_model_usage_record
annotations: none low

Records LLM token usage from a host model call (Anthropic/OpenAI-style) into the MCP session so woo_usage_stats can report it. Call this after each model round when your agent host tracks usage outside the MCP server.

model string round number stop_reason string input_tokens number output_tokens number cache_read_input_tokens number cache_creation_input_tokens number
woo_tags_list
annotations: none low

Lists product tags with pagination. Use this to discover available tags for filtering, merchandising, or assigning to products during catalog work.

search string hide_empty boolean
woo_tags_get
annotations: none low

Retrieves a single product tag by ID. Use this when you need the full tag record including slug and product count.

id number
woo_tags_create
annotations: none low

Creates a new product tag. Use this when introducing a new merchandising or SEO label that products can share.

id number
woo_tags_update
annotations: none low

Updates an existing product tag by ID. Use this to rename tags or improve descriptions for storefront filters and SEO.

id number
woo_tags_delete
annotations: none low

Deletes a product tag by ID. Products keep their other tags; only this association is removed. force=true permanently deletes.

id number force boolean
woo_customers_list
annotations: none low

Lists WooCommerce customers with pagination. Default detail=summary uses a slim `_fields` projection (no full address blobs) to cut tokens/memory — use detail=full or woo_customers_get for complete profiles. Returns customer objects and pagination metadata.

role string email string order enum
woo_customers_get
annotations: none low

Retrieves a single customer by ID including billing/shipping and meta. Use this when you have a customer ID from an order or search and need full account details.

id number
woo_customers_create
annotations: none low

Creates a new customer account with email and optional name, addresses, and password. Use this to onboard users from an agent workflow or seed demo accounts.

id number
woo_customers_update
annotations: none low

Updates an existing customer by ID. Use this to fix addresses, names, or billing details without recreating the account.

id number
woo_customers_delete
annotations: none low

Deletes a customer by ID. force=true is required by WooCommerce for permanent deletion. Use for GDPR erasure or test cleanup only when authorized.

id number force boolean
woo_customers_search
annotations: none low

Searches customers by free-text query (name, email, username). Default detail=summary uses a slim `_fields` projection. Use this when the user provides a partial name or email and you need matching accounts before acting on orders.

query string
woo_shipping_zones_list
annotations: none low

Lists all shipping zones configured in the store. Use this to understand regional shipping setup before inspecting methods or diagnosing delivery options.

woo_shipping_zones_get
annotations: none low

Retrieves a single shipping zone by ID including name and order. Use this when drilling into a specific zone from the list.

id number
woo_shipping_zone_methods_list
annotations: none low

Lists shipping methods enabled for a given zone (flat rate, free shipping, local pickup, etc.). Use this to audit delivery options available to customers in that region.

zone_id number
woo_shipping_methods_list
annotations: none low

Lists all registered shipping method types available in WooCommerce (not zone assignments). Use this to see which method plugins/classes the store supports.

woo_shipping_classes_list
annotations: none low

Lists product shipping classes used to group products for rate calculation. Use this when assigning classes to products or configuring class-based flat rates.

woo_shipping_classes_get
annotations: none low

Retrieves a single product shipping class by ID. Use this to inspect slug, description, and count for a specific class.

id number
woo_reviews_list
annotations: none low

Lists product reviews with optional filters for product, status, and reviewer. Use this for moderation queues, reputation checks, or finding unapproved reviews before publish.

order enum
woo_reviews_get
annotations: none low

Retrieves a single product review by ID including rating, content, and approval status. Use when moderating a specific review from a list or notification.

id number
woo_reviews_create
annotations: none low

Creates a product review (rating 1–5). Useful for seeding demo data or importing historical reviews. Prefer status=hold for moderation workflows.

review string reviewer string product_id number reviewer_email string
woo_reviews_update
annotations: none low

Updates a product review (status, rating, text). Use this to approve/spam reviews or correct imported content.

id number rating number review string status enum reviewer string reviewer_email string
woo_reviews_delete
annotations: none low

Deletes a product review by ID. force=true permanently deletes; otherwise moves to trash when supported.

id number force boolean
woo_webhooks_list
annotations: none low

Lists configured WooCommerce webhooks with pagination. Use this to audit integrations, find broken delivery URLs, or inventory event subscriptions.

search string
woo_webhooks_get
annotations: none low

Retrieves a single webhook by ID including topic, delivery URL, and status. Use this when diagnosing a specific integration endpoint.

id number
woo_webhooks_create
annotations: none low

Creates a new webhook subscription for a topic and delivery URL. Use this to connect the store to external systems (ERP, Slack, custom services) on order/product/customer events.

id number
woo_webhooks_update
annotations: none low

Updates an existing webhook by ID (status, URL, topic, name). Use this to pause/resume integrations or rotate delivery endpoints.

id number
woo_webhooks_delete
annotations: none low

Deletes a webhook by ID. Use this to remove obsolete integrations or stop noisy event delivery. force=true permanently deletes.

id number force boolean
woo_payments_list
annotations: none low

Lists all payment gateways registered in the store (enabled and disabled). Use this to audit checkout payment options or find gateway IDs before updating settings.

woo_payments_get
annotations: none low

Retrieves a single payment gateway by its ID string (e.g. bacs, cod, stripe). Use this to inspect title, enabled flag, and settings fields for a specific method.

woo_payments_update
annotations: none low

Updates payment gateway settings such as enabled state, title, or method-specific options. Use this carefully when enabling/disabling checkout methods or fixing gateway configuration from an agent workflow.

id string order number title string enabled boolean settings record description string
woo_coupons_list
annotations: none low

Lists discount coupons with pagination. Use this to audit active promotions, find a code by browsing, or report on campaign inventory.

code string
woo_coupons_get
annotations: none low

Retrieves a single coupon by ID including amount, limits, and expiry. Use this when you already have the coupon ID from a list or order coupon_lines.

id number
woo_coupons_create
annotations: none low

Creates a new coupon code with discount type, amount, and optional limits. Use this to launch promotions or generate one-off support discounts.

id number
woo_coupons_update
annotations: none low

Updates an existing coupon by ID (amount, expiry, usage limits, etc.). Use this to extend campaigns or disable a code without deleting history.

id number
woo_coupons_delete
annotations: none low

Deletes a coupon by ID. Use this to retire obsolete or leaked promo codes. force=true permanently removes the coupon.

id number force boolean
woo_variations_list
annotations: none low

Lists variations for a parent variable product with pagination. Use this when managing size/color SKUs, checking per-variant stock, or syncing variant pricing.

woo_variations_get
annotations: none low

Retrieves a single product variation by parent product ID and variation ID. Use this for detailed variant pricing, stock, or attribute inspection.

id number product_id number
woo_variations_create
annotations: none low

Creates a new variation under a variable product. Use this when adding a new size/color combination with its own price and stock.

product_id number
woo_variations_update
annotations: none low

Updates an existing product variation. Use this for variant price changes, stock adjustments, or attribute corrections.

id number product_id number
woo_variations_delete
annotations: none low

Deletes a product variation by ID. Use this to remove obsolete size/color SKUs from a variable product. force=true permanently deletes.

id number force boolean product_id number

Permissions 2

network medium
Server uses network capabilities via: axios, fetch()
env_vars low
Server uses env_vars capabilities via: process.env

Scan Findings 185

low
Tool 'woo_products_list' has no annotations annotation_checker · 100%
low
Tool 'woo_products_get' has no annotations annotation_checker · 100%
low
Tool 'woo_products_create' has no annotations annotation_checker · 100%
low
Tool 'woo_products_update' has no annotations annotation_checker · 100%
low
Tool 'woo_products_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_products_search' has no annotations annotation_checker · 100%
low
Tool 'woo_products_batch' has no annotations annotation_checker · 100%
low
Tool 'woo_categories_list' has no annotations annotation_checker · 100%
low
Tool 'woo_categories_get' has no annotations annotation_checker · 100%
low
Tool 'woo_categories_create' has no annotations annotation_checker · 100%
low
Tool 'woo_categories_update' has no annotations annotation_checker · 100%
low
Tool 'woo_categories_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_settings_groups_list' has no annotations annotation_checker · 100%
low
Tool 'woo_settings_list' has no annotations annotation_checker · 100%
low
Tool 'woo_settings_get' has no annotations annotation_checker · 100%
low
Tool 'woo_settings_update' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_list' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_get' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_create' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_update' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_notes_list' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_notes_create' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_batch' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_refunds_list' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_refunds_get' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_refunds_create' has no annotations annotation_checker · 100%
low
Tool 'woo_orders_refunds_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_rates_list' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_rates_get' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_rates_create' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_rates_update' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_rates_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_classes_list' has no annotations annotation_checker · 100%
low
Tool 'woo_tax_classes_get' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_sales' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_top_sellers' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_orders_totals' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_customers_totals' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_products_totals' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_coupons_totals' has no annotations annotation_checker · 100%
low
Tool 'woo_reports_reviews_totals' has no annotations annotation_checker · 100%
low
Tool 'woo_system_status_get' has no annotations annotation_checker · 100%
low
Tool 'woo_system_status_tools_list' has no annotations annotation_checker · 100%
low
Tool 'woo_system_status_tools_run' has no annotations annotation_checker · 100%
low
Tool 'woo_usage_stats' has no annotations annotation_checker · 100%
low
Tool 'woo_model_usage_record' has no annotations annotation_checker · 100%
low
Tool 'woo_tags_list' has no annotations annotation_checker · 100%
low
Tool 'woo_tags_get' has no annotations annotation_checker · 100%
low
Tool 'woo_tags_create' has no annotations annotation_checker · 100%
low
Tool 'woo_tags_update' has no annotations annotation_checker · 100%
low
Tool 'woo_tags_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_customers_list' has no annotations annotation_checker · 100%
low
Tool 'woo_customers_get' has no annotations annotation_checker · 100%
low
Tool 'woo_customers_create' has no annotations annotation_checker · 100%
low
Tool 'woo_customers_update' has no annotations annotation_checker · 100%
low
Tool 'woo_customers_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_customers_search' has no annotations annotation_checker · 100%
low
Tool 'woo_shipping_zones_list' has no annotations annotation_checker · 100%
low
Tool 'woo_shipping_zones_get' has no annotations annotation_checker · 100%
low
Tool 'woo_shipping_zone_methods_list' has no annotations annotation_checker · 100%
low
Tool 'woo_shipping_methods_list' has no annotations annotation_checker · 100%
low
Tool 'woo_shipping_classes_list' has no annotations annotation_checker · 100%
low
Tool 'woo_shipping_classes_get' has no annotations annotation_checker · 100%
low
Tool 'woo_reviews_list' has no annotations annotation_checker · 100%
low
Tool 'woo_reviews_get' has no annotations annotation_checker · 100%
low
Tool 'woo_reviews_create' has no annotations annotation_checker · 100%
low
Tool 'woo_reviews_update' has no annotations annotation_checker · 100%
low
Tool 'woo_reviews_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_webhooks_list' has no annotations annotation_checker · 100%
low
Tool 'woo_webhooks_get' has no annotations annotation_checker · 100%
low
Tool 'woo_webhooks_create' has no annotations annotation_checker · 100%
low
Tool 'woo_webhooks_update' has no annotations annotation_checker · 100%
low
Tool 'woo_webhooks_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_payments_list' has no annotations annotation_checker · 100%
low
Tool 'woo_payments_get' has no annotations annotation_checker · 100%
low
Tool 'woo_payments_update' has no annotations annotation_checker · 100%
low
Tool 'woo_coupons_list' has no annotations annotation_checker · 100%
low
Tool 'woo_coupons_get' has no annotations annotation_checker · 100%
low
Tool 'woo_coupons_create' has no annotations annotation_checker · 100%
low
Tool 'woo_coupons_update' has no annotations annotation_checker · 100%
low
Tool 'woo_coupons_delete' has no annotations annotation_checker · 100%
low
Tool 'woo_variations_list' has no annotations annotation_checker · 100%
low
Tool 'woo_variations_get' has no annotations annotation_checker · 100%
low
Tool 'woo_variations_create' has no annotations annotation_checker · 100%
low
Tool 'woo_variations_update' has no annotations annotation_checker · 100%
low
Tool 'woo_variations_delete' has no annotations annotation_checker · 100%
medium
OAuth implementation without PKCE auth_checker · 75%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
info
package.json metadata manifest_parser · 100%
info
Tool: woo_products_list manifest_parser · 85%
info
Tool: woo_products_get manifest_parser · 85%
info
Tool: woo_products_create manifest_parser · 85%
info
Tool: woo_products_update manifest_parser · 85%
info
Tool: woo_products_delete manifest_parser · 85%
info
Tool: woo_products_search manifest_parser · 85%
info
Tool: woo_products_batch manifest_parser · 85%
info
Tool: woo_categories_list manifest_parser · 85%
info
Tool: woo_categories_get manifest_parser · 85%
info
Tool: woo_categories_create manifest_parser · 85%
info
Tool: woo_categories_update manifest_parser · 85%
info
Tool: woo_categories_delete manifest_parser · 85%
info
Tool: woo_settings_groups_list manifest_parser · 85%
info
Tool: woo_settings_list manifest_parser · 85%
info
Tool: woo_settings_get manifest_parser · 85%
info
Tool: woo_settings_update manifest_parser · 85%
info
Tool: woo_orders_list manifest_parser · 85%
info
Tool: woo_orders_get manifest_parser · 85%
info
Tool: woo_orders_create manifest_parser · 85%
info
Tool: woo_orders_update manifest_parser · 85%
info
Tool: woo_orders_delete manifest_parser · 85%
info
Tool: woo_orders_notes_list manifest_parser · 85%
info
Tool: woo_orders_notes_create manifest_parser · 85%
info
Tool: woo_orders_batch manifest_parser · 85%
info
Tool: woo_orders_refunds_list manifest_parser · 85%
info
Tool: woo_orders_refunds_get manifest_parser · 85%
info
Tool: woo_orders_refunds_create manifest_parser · 85%
info
Tool: woo_orders_refunds_delete manifest_parser · 85%
info
Tool: woo_tax_rates_list manifest_parser · 85%
info
Tool: woo_tax_rates_get manifest_parser · 85%
info
Tool: woo_tax_rates_create manifest_parser · 85%
info
Tool: woo_tax_rates_update manifest_parser · 85%
info
Tool: woo_tax_rates_delete manifest_parser · 85%
info
Tool: woo_tax_classes_list manifest_parser · 85%
info
Tool: woo_tax_classes_get manifest_parser · 85%
info
Tool: woo_reports_sales manifest_parser · 85%
info
Tool: woo_reports_top_sellers manifest_parser · 85%
info
Tool: woo_reports_orders_totals manifest_parser · 85%
info
Tool: woo_reports_customers_totals manifest_parser · 85%
info
Tool: woo_reports_products_totals manifest_parser · 85%
info
Tool: woo_reports_coupons_totals manifest_parser · 85%
info
Tool: woo_reports_reviews_totals manifest_parser · 85%
info
Tool: woo_system_status_get manifest_parser · 85%
info
Tool: woo_system_status_tools_list manifest_parser · 85%
info
Tool: woo_system_status_tools_run manifest_parser · 85%
info
Tool: woo_usage_stats manifest_parser · 85%
info
Tool: woo_model_usage_record manifest_parser · 85%
info
Tool: woo_tags_list manifest_parser · 85%
info
Tool: woo_tags_get manifest_parser · 85%
info
Tool: woo_tags_create manifest_parser · 85%
info
Tool: woo_tags_update manifest_parser · 85%
info
Tool: woo_tags_delete manifest_parser · 85%
info
Tool: woo_customers_list manifest_parser · 85%
info
Tool: woo_customers_get manifest_parser · 85%
info
Tool: woo_customers_create manifest_parser · 85%
info
Tool: woo_customers_update manifest_parser · 85%
info
Tool: woo_customers_delete manifest_parser · 85%
info
Tool: woo_customers_search manifest_parser · 85%
info
Tool: woo_shipping_zones_list manifest_parser · 85%
info
Tool: woo_shipping_zones_get manifest_parser · 85%
info
Tool: woo_shipping_zone_methods_list manifest_parser · 85%
info
Tool: woo_shipping_methods_list manifest_parser · 85%
info
Tool: woo_shipping_classes_list manifest_parser · 85%
info
Tool: woo_shipping_classes_get manifest_parser · 85%
info
Tool: woo_reviews_list manifest_parser · 85%
info
Tool: woo_reviews_get manifest_parser · 85%
info
Tool: woo_reviews_create manifest_parser · 85%
info
Tool: woo_reviews_update manifest_parser · 85%
info
Tool: woo_reviews_delete manifest_parser · 85%
info
Tool: woo_webhooks_list manifest_parser · 85%
info
Tool: woo_webhooks_get manifest_parser · 85%
info
Tool: woo_webhooks_create manifest_parser · 85%
info
Tool: woo_webhooks_update manifest_parser · 85%
info
Tool: woo_webhooks_delete manifest_parser · 85%
info
Tool: woo_payments_list manifest_parser · 85%
info
Tool: woo_payments_get manifest_parser · 85%
info
Tool: woo_payments_update manifest_parser · 85%
info
Tool: woo_coupons_list manifest_parser · 85%
info
Tool: woo_coupons_get manifest_parser · 85%
info
Tool: woo_coupons_create manifest_parser · 85%
info
Tool: woo_coupons_update manifest_parser · 85%
info
Tool: woo_coupons_delete manifest_parser · 85%
info
Tool: woo_variations_list manifest_parser · 85%
info
Tool: woo_variations_get manifest_parser · 85%
info
Tool: woo_variations_create manifest_parser · 85%
info
Tool: woo_variations_update manifest_parser · 85%
info
Tool: woo_variations_delete manifest_parser · 85%
info
Transport: stdio manifest_parser · 90%
info
Required env vars (12) manifest_parser · 80%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
medium
Permission: network access detected permission_analyzer · 90%
low
Permission: env_vars access detected permission_analyzer · 90%
critical
Tool poisoning in 'woo_model_usage_record': Cross-tool sequencing directive poisoning · 85%
info
SBOM generated: 39 components sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%