Woocommerce MCP

A small, read-only Model Context Protocol server for WordPress + WooCommerce. It lets Claude (or any MCP client) answer questions about a live store - products, orders, sales, and blog posts - over the official REST APIs. No writes, no plugins to install on the store: it talks to the existing WordPress/WooCommerce REST endpoints. Its 5 documented tools cluster into read & search, sales.

People who work with ecommerce, rest api and woocommerce and want it reachable from Claude, Cursor, VS Code, or another MCP client. The project is written in TypeScript.

VERIFIED ACTIVE

LAST COMMIT 2026-09-10 · ★ 2 · #28 OF 52 MAINTAINED E-COMMERCE · VERIFIED 2026-09-18

MIT · TypeScript servers · how we verify → /methodology

01 · Install Woocommerce MCP

before you install - you'll need

Set WP_URL, WC_CONSUMER_KEY, WC_CONSUMER_SECRET before connecting.

Claude Code

claude mcp add wppoland-woocommerce-mcp -- npx -y @wppoland/woocommerce-mcp

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "wppoland-woocommerce-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@wppoland/woocommerce-mcp"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license MIT - declared in the repository

npm package @wppoland/woocommerce-mcp - published under the repo owner's npm scope (@wppoland)

registry namespace io.github.wppoland is GitHub-verified and matches the repo owner

03 · What Woocommerce MCP can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

With this server connected, an agent can list / search products (name, sku, price, stock, permalink), and search published blog posts (public WP REST API).

Capability map

Tools grouped from the project's README - what Woocommerce MCP lets an agent do.

read & search

4 tools - e.g. List / search products (name, sku, price, stock, permalink); Full details for one product by id; Recent orders, newest first, optional status filter

list_products · get_product · list_orders · search_posts

Sales

1 tool - e.g. Sales totals for a period (week / month / last_month / year)

sales_report

Limitations (from the README)

- Node 18+ (uses the built-in fetch). - Logs go to stderr so they never corrupt the stdio MCP protocol on stdout. - API errors are surfaced with the store's message; credentials are never echoed.

Latest releases

v0.1.0 · 2026-07-12

Initial public release. · Five read-only MCP tools: list_products, get_product, list_orders, sales_report, search_posts · TypeScript, stdio transport, MIT license · WooCommerce REST API with Read-scoped keys; no store…

04 · Who maintains Woocommerce MCP

woocommerce-mcp is maintained by wppoland. It's the only MCP server we track from this author; the repo dates to Jun 2026.

05 · Facts

category
e-commerce - ranked #28 of 52 actively-maintained e-commerce servers as of 2026-09-18.
release cadence
1 release in the last 90 days (latest 2026-07-12)
registry
io.github.wppoland/woocommerce-mcp (active, first published 2026-07-19)
packages
npm:@wppoland/woocommerce-mcp

06 · Woocommerce MCP FAQ

Is Woocommerce MCP still maintained?

Yes - as of 2026-09-18, its last commit was 2026-09-10 and it shipped 1 release in the last 90 days. We re-verify nightly.

What can Woocommerce MCP do?

With this server connected, an agent can list / search products (name, sku, price, stock, permalink), and search published blog posts (public WP REST API).

How do I install Woocommerce MCP?

Run `npx -y @wppoland/woocommerce-mcp`. The README documents 3 environment variables (WP_URL, WC_CONSUMER_KEY, WC_CONSUMER_SECRET) to set first. Set WP_URL, WC_CONSUMER_KEY, WC_CONSUMER_SECRET before connecting. You can also paste the ready-made client config above.

Does Woocommerce MCP run locally?

Yes - it's a stdio server: it runs on your machine (via npx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to Woocommerce MCP