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.
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
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
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.
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_listwafle_abandoned_send_recoverywafle_ads_breakdown_by_creativewafle_ads_propose_pause_underperformerswafle_ads_audience_overlap_checkwafle_ads_creative_performance_logwafle_ads_generate_report_monthlywafle_ads_compare_periodswafle_ads_campaign_pausewafle_ads_campaign_resumewafle_ads_campaign_update_budgetwafle_ads_bulk_pausewafle_ads_recommendations_listwafle_ads_recommendation_applywafle_ads_anomalies_listwafle_ads_performance_summarywafle_agents_listList 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_getGet one agent by its slug — full definition including system_prompt, tools_allowed, guardrails, trigger_config and stats counters.
wafle_agents_createwafle_agents_updatePatch an existing agent — change system_prompt, tools_allowed, guardrails, trigger_config, model, status, etc. Slug + tenant_id are immutable.
wafle_agents_activateActivate an agent — moves status to `active`, which makes it eligible for scheduled/event triggers. No-op if already active.
wafle_agents_pausePause an active agent. Triggers stop firing; existing runs unaffected.
wafle_agents_runManually 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_listList runs for an agent — paginated, filterable by status. Each row: status, tokens, cost_cents, duration_ms.
wafle_agents_runs_getGet 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_approveApprove a run that is `awaiting_approval`. Resumes execution from the pending tool call. Optional `note` saved to the audit log.
wafle_agents_runs_rejectReject a run that is `awaiting_approval`. Run goes to `cancelled`; the pending tool call is NOT executed.
wafle_agents_templatesList 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_catalogList 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_statsAggregated stats for an agent: total runs, success rate, total cost, top tool names called.
wafle_ai_translatewafle_ai_segment_compileCompile 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_describewafle_ai_review_summarySummarize 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_categorizeAuto-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_hintCustomer-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_listPaginated 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_getFetch a single AI job by id. Includes input_payload, output_payload, tokens, cost, model, duration, and user review status.
wafle_ai_jobs_acceptwafle_ai_jobs_rejectMark an AI job's output as rejected. Use to keep usage stats clean and to preserve learning signal for prompt tuning.
wafle_ai_jobs_editSave 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_usageToken + cost aggregate for a store since a date (defaults to last 30 days). Use for the AI dashboard chart and quota guidance.
wafle_analytics_summarywafle_analytics_by_periodwafle_auth_mewafle_auth_keys_listwafle_auth_keys_createwafle_checkout_orders_listList 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_getFetch 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_refundRefund 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_emailResend 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_paidManually 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_recoverList 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_listwafle_coupons_createwafle_coupons_updatePatch a coupon by id. Only sent fields change.
wafle_coupons_deleteDelete a coupon by id. Past usage history is preserved on orders.
wafle_customers_listwafle_customers_getFetch a single customer profile by email. Returns aggregated stats: lifetime value, order count, last seen, top SKUs.
wafle_customers_ordersList the orders of a single customer (by email).
wafle_customers_segments_listList all customer segments configured for a store. Segments power the `segment=` filter in `wafle_customers_list` and the audience exports.
wafle_domains_listwafle_domains_addwafle_domains_verifywafle_domains_statuswafle_exports_customerswafle_exports_meta_audiencewafle_exports_google_adsExport an audience formatted for Google Ads Customer Match: hashed email/phone with the column names Google expects.
wafle_gateways_listwafle_gateways_createwafle_gateways_updatewafle_gateways_testwafle_gateways_deletewafle_resources_invalidatewafle_prompts_listList 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_waitwafle_csv_importwafle_ads_sync_fullwafle_orders_listwafle_orders_getFetch a single order by id. Returns customer, items, totals, gateway info, status, shipment data, timeline reference.
wafle_orders_createwafle_orders_shipwafle_orders_cancelwafle_orders_refundwafle_orders_add_noteAdd 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_timelinewafle_pixels_getFetch the current marketing pixel IDs configured for a store: Meta (Facebook), TikTok, GA4, Google Ads.
wafle_pixels_setSet / 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_listwafle_pricing_rules_createwafle_pricing_rules_updatePatch an existing pricing rule by id.
wafle_pricing_rules_deleteDelete a pricing rule by id. Irreversible — confirm before calling.
wafle_pricing_compute_previewwafle_products_listwafle_products_searchLightweight search of products by name/sku. Equivalent to `wafle_products_list` with `search` set, but optimized for autocomplete.
wafle_products_getFetch a single product by slug (the URL-friendly id). Returns full detail including variants, images, attributes and overrides.
wafle_products_create_manualwafle_products_updatewafle_products_overridewafle_products_sync_trigger24 further tools are not listed here. The complete surface is in the source.
Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.
When Vitest UI server is listening, arbitrary file can be read and executed
Vitest allows Remote Code Execution when accessing a malicious website while Vitest API server is listening
Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default
Fastify's Content-Type header tab character allows body validation bypass
Fastify vulnerable to invalid content-type parsing, which could lead to validation bypass
LOG_LEVEL"": "info"WAFLE_API_KEYyour wafle admin key> # required (upstream)WAFLE_API_URL"": "https://wafle.click/wp-json/waffle/v1",WAFLE_MCP_HTTP_HOSTWAFLE_MCP_HTTP_PORTWAFLE_MCP_JWT_SECRETshared HS256 secret>WAFLE_MCP_REQUIRE_JWT1 # refuses legacy bearers in prodWAFLE_MCP_TOKENScomma-separated bearer tokens>WAFLE_TIMEOUT_MS30000 # optionalWAFLE_USER_SESSIONTool 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.
[](https://m8ven.ai/mcp/the33warehouse-tech/wafle-mcp)?variant=verified from the URL.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