wafle MCP server (the33warehouse-tech/wafle-mcp) is an MCP server listed on the M8ven Trust Index. It scores 54 out of 100, grade D. It declares 124 tools. No publisher has claimed this listing.

D
Caution
54/100

wafle MCP server

The first MCP server for the wafle commerce platform. It enables Claude, agents, and MCP-compatible clients to manage stores, products, orders, pricing, gateways, and more through natural language.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

the33warehouse-tech

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
🚨
Known vulnerabilities in dependencies: 2 critical, 3 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
🔐
You'll be asked for 2 credentials: WAFLE_API_KEY, WAFLE_MCP_JWT_SECRET
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes124 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

wafle_abandoned_list
wafle_abandoned_send_recovery
wafle_ads_breakdown_by_creative
wafle_ads_propose_pause_underperformers
wafle_ads_audience_overlap_check
wafle_ads_creative_performance_log
wafle_ads_generate_report_monthly
wafle_ads_compare_periods
wafle_ads_campaign_pause
wafle_ads_campaign_resume
wafle_ads_campaign_update_budget
wafle_ads_bulk_pause
wafle_ads_recommendations_list
wafle_ads_recommendation_apply
wafle_ads_anomalies_list
wafle_ads_performance_summary
wafle_agents_list

List custom agents defined for a store. Each agent has system_prompt + tools whitelist + guardrails + trigger. Filter by status (draft/active/paused/archived) or trigger_type.

wafle_agents_get

Get one agent by its slug — full definition including system_prompt, tools_allowed, guardrails, trigger_config and stats counters.

wafle_agents_create
wafle_agents_update

Patch an existing agent — change system_prompt, tools_allowed, guardrails, trigger_config, model, status, etc. Slug + tenant_id are immutable.

wafle_agents_activate

Activate an agent — moves status to `active`, which makes it eligible for scheduled/event triggers. No-op if already active.

wafle_agents_pause

Pause an active agent. Triggers stop firing; existing runs unaffected.

wafle_agents_run

Manually dispatch a run for an agent. Returns the `run_id` and the synchronous run row (ends in status=done|failed|awaiting_approval). Use `wafle_agents_runs_get` to poll.

wafle_agents_runs_list

List runs for an agent — paginated, filterable by status. Each row: status, tokens, cost_cents, duration_ms.

wafle_agents_runs_get

Get a specific run with its full conversation + audit log (steps: user_input, assistant_text, tool_call, tool_result, approval_request, approval_granted, error).

wafle_agents_runs_approve

Approve a run that is `awaiting_approval`. Resumes execution from the pending tool call. Optional `note` saved to the audit log.

wafle_agents_runs_reject

Reject a run that is `awaiting_approval`. Run goes to `cancelled`; the pending tool call is NOT executed.

wafle_agents_templates

List the 5 pre-armed agent templates: customer-support-bot, content-writer-nightly, stock-watcher, abandoned-recovery, fraud-detector. Use the `id` field as `from_template` in `wafle_agents_create`.

wafle_agents_tool_catalog

List the catalog of tools that can be added to an agent's `tools_allowed`. Each entry: name, description, scope required, destructive flag, JSON Schema for input.

wafle_agents_stats

Aggregated stats for an agent: total runs, success rate, total cost, top tool names called.

wafle_ai_translate
wafle_ai_segment_compile

Compile a natural-language description (e.g. 'clientes que compraron al menos 2 veces y abandonaron carro últimos 30 días') into the email-marketing segmentation DSL. Returns `{ dsl_json, validated, errors }`. Pass `dsl_json` straight into a new segment.

wafle_ai_product_describe
wafle_ai_review_summary

Summarize the approved reviews of a product into 2–3 sentences plus sentiment + key points. Output goes into a job; call `wafle_ai_jobs_accept` to cache the summary on the reviews aggregate row (24h TTL).

wafle_ai_categorize

Auto-classify products without a category. Call with a list of SKUs and a list of allowed categories. Each product gets `{ category, confidence }` (or null if nothing fits). Accept the job to write category overrides into the catalog.

wafle_ai_support_hint

Customer-service co-pilot: classify an inbound message, gauge sentiment, decide if it needs escalation, and draft a friendly response. PII (emails, phones) in the message is redacted before being sent to the LLM.

wafle_ai_jobs_list

Paginated list of AI jobs for a store. Filter by job_type, status, or user_review. Use to surface a 'pending review' queue or to find a specific recent job.

wafle_ai_jobs_get

Fetch a single AI job by id. Includes input_payload, output_payload, tokens, cost, model, duration, and user review status.

wafle_ai_jobs_accept
wafle_ai_jobs_reject

Mark an AI job's output as rejected. Use to keep usage stats clean and to preserve learning signal for prompt tuning.

wafle_ai_jobs_edit

Save user edits on an AI job's output and apply them. For product_description, the edited text is what gets written to data.descriptions.<lang>.

wafle_ai_usage

Token + cost aggregate for a store since a date (defaults to last 30 days). Use for the AI dashboard chart and quota guidance.

wafle_analytics_summary
wafle_analytics_by_period
wafle_auth_me
wafle_auth_keys_list
wafle_auth_keys_create
wafle_checkout_orders_list

List orders from the wafle_orders table for a store. Returns the new checkout pipeline (cart→MP/Stripe/transfer→paid). Filterable by status, date floor (`since`, ISO 8601), and customer email. For legacy WC orders use `wafle_orders_list` (different table).

wafle_checkout_order_get

Fetch one order from wafle_orders. `order_id` accepts either the numeric primary key or the public id (WK<L>-YYYY-NNN-rand) shown on the order detail page.

wafle_checkout_order_refund

Refund a paid order — full when `amount_cents` is omitted/0, partial otherwise. Guardrail: any refund > 50% of total_cents requires `confirm:true`. The refund is recorded on the wafle_orders row; the gateway-side refund call is gateway-specific and currently records `manual_refund:true` in metadata

wafle_checkout_order_resend_email

Resend a transactional email tied to an order. Default template: `order_confirmation`. Idempotency-keyed by template+public_id+timestamp so retries don't double-send within the same minute.

wafle_checkout_order_mark_paid

Manually flip a transfer/cash order to paid (proof-of-deposit verified, cash collected at delivery). Returns 422 if the order is on a webhook-driven gateway (mp / stripe) — those move via /webhooks/* automatically.

wafle_checkout_cart_recover

List abandoned carts (cart_token has items but no `paid` order in wafle_orders) for a customer email hash. Used by retargeting drip flows to surface 'you left X in your cart' nudges.

wafle_coupons_list
wafle_coupons_create
wafle_coupons_update

Patch a coupon by id. Only sent fields change.

wafle_coupons_delete

Delete a coupon by id. Past usage history is preserved on orders.

wafle_customers_list
wafle_customers_get

Fetch a single customer profile by email. Returns aggregated stats: lifetime value, order count, last seen, top SKUs.

wafle_customers_orders

List the orders of a single customer (by email).

wafle_customers_segments_list

List all customer segments configured for a store. Segments power the `segment=` filter in `wafle_customers_list` and the audience exports.

wafle_domains_list
wafle_domains_add
wafle_domains_verify
wafle_domains_status
wafle_exports_customers
wafle_exports_meta_audience
wafle_exports_google_ads

Export an audience formatted for Google Ads Customer Match: hashed email/phone with the column names Google expects.

wafle_gateways_list
wafle_gateways_create
wafle_gateways_update
wafle_gateways_test
wafle_gateways_delete
wafle_resources_invalidate
wafle_prompts_list

List the server-defined prompts available on this MCP server. Returns name, description, and argument schema for each. Useful for clients that don't surface the prompts/list MCP method.

wafle_products_sync_trigger_and_wait
wafle_csv_import
wafle_ads_sync_full
wafle_orders_list
wafle_orders_get

Fetch a single order by id. Returns customer, items, totals, gateway info, status, shipment data, timeline reference.

wafle_orders_create
wafle_orders_ship
wafle_orders_cancel
wafle_orders_refund
wafle_orders_add_note

Add an internal or customer-visible note to an order. Notes appear in the timeline and (if `customer=true`) in the customer's order detail page + email.

wafle_orders_timeline
wafle_pixels_get

Fetch the current marketing pixel IDs configured for a store: Meta (Facebook), TikTok, GA4, Google Ads.

wafle_pixels_set

Set / update marketing pixel IDs of a store. Pass only the pixels you want to change; omit fields stay untouched. Pass `null` to clear a pixel.

wafle_pricing_rules_list
wafle_pricing_rules_create
wafle_pricing_rules_update

Patch an existing pricing rule by id.

wafle_pricing_rules_delete

Delete a pricing rule by id. Irreversible — confirm before calling.

wafle_pricing_compute_preview
wafle_products_list
wafle_products_search

Lightweight search of products by name/sku. Equivalent to `wafle_products_list` with `search` set, but optimized for autocomplete.

wafle_products_get

Fetch a single product by slug (the URL-friendly id). Returns full detail including variants, images, attributes and overrides.

wafle_products_create_manual
wafle_products_update
wafle_products_override
wafle_products_sync_trigger

24 further tools are not listed here. The complete surface is in the source.

// known CVEs in dependencies2 critical3 high3 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

criticalvitest@2.1.5GHSA-5xrq-8626-4rwp

When Vitest UI server is listening, arbitrary file can be read and executed

criticalvitest@2.1.5GHSA-9crc-q9x8-hgqq

Vitest allows Remote Code Execution when accessing a malicious website while Vitest API server is listening

high@modelcontextprotocol/sdk@1.0.4GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highfastify@5.1.0GHSA-jx2c-rxcm-jvmq

Fastify's Content-Type header tab character allows body validation bypass

highfastify@5.1.0GHSA-mg2h-6x62-wpwc

Fastify vulnerable to invalid content-type parsing, which could lead to validation bypass

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configLOG_LEVEL"": "info"
🔐 secretWAFLE_API_KEYyour wafle admin key> # required (upstream)
configWAFLE_API_URL"": "https://wafle.click/wp-json/waffle/v1",
configWAFLE_MCP_HTTP_HOST
configWAFLE_MCP_HTTP_PORT
🔐 secretWAFLE_MCP_JWT_SECRETshared HS256 secret>
configWAFLE_MCP_REQUIRE_JWT1 # refuses legacy bearers in prod
configWAFLE_MCP_TOKENScomma-separated bearer tokens>
configWAFLE_TIMEOUT_MS30000 # optional
configWAFLE_USER_SESSION
// quality suggestions

Tool annotations

110/124 tools have annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

124/124 tools missing one or more hints — wafle_abandoned_list (missing: destructiveHint, openWorldHint); wafle_abandoned_send_recovery (missing: readOnlyHint, openWorldHint); wafle_ads_breakdown_by_creative (missing: destructiveHint, openWorldHint), +121 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tool test coverage

37/124 tools referenced in tests (30%)

Write tests that reference each tool by name so every tool has at least one test.

Shell command execution

2 child_process calls — runs shell commands

Prefer library functions over shell-outs. If you must shell out, ensure all inputs are properly escaped.

Production dependencies are patched

0 critical, 3 high severity in production deps — @modelcontextprotocol/sdk@1.0.4 (high), fastify@5.1.0 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Dev dependencies

2 critical/high in dev-only deps (does not ship to users)

Upgrade dev dependencies when convenient.

Domain consistency

npm scope @wafle doesn't match GitHub owner the33warehouse-tech

Use the same org name across GitHub, npm, and your homepage so users can verify the publisher.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 7 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/the33warehouse-tech/wafle-mcp?variant=verified)](https://m8ven.ai/mcp/the33warehouse-tech/wafle-mcp)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 0e2a3c7791b1212b4a89a8db7fa6f69edbec0c68
code hash: 96f4352099ff9fadfaa403f74b132ebccfbf78f2b3fe2103ac972ce774c374d8
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client