Skip to main content

Plugins · Overview

Neuroon offers two paths for connecting your shop to the semantic engine:

  1. Official plugins for platforms with their own ecosystem (WordPress / WooCommerce; DNN on the roadmap).
  2. Custom integration server-to-server when your stack is proprietary or does not fit a plugin (Next.js, Nuxt, Java monolith, etc.).

This page summarizes the capability matrix and points you to the right guide.

Capability matrix

CapabilityWordPress · neuroon-search v0.8.4DNN · module + schedulerCustom · script + server-to-server
DistributionOfficial plugin (ZIP / wp.org pending)Recipe + C# examples (no packaged plugin)CDN loader + your backend
Domain verificationAutomated (Settings tab)Manual via APIManual via API
Product syncAutomatic (WooCommerce hooks)Scheduled (IScheduledTask)Your cron / webhook
Cart bridgeInline (WC events → neuroon:cart-update)Manual from Razor / .ascxManual dispatch
Conversion trackingServer-side from WC checkout (recommended)Server-side in OnOrderConfirmedServer-side from your backend
Widget tokenCached in options + transientIn-memory cache 24 h with 5 min marginYour cache (Redis, KV, etc.)
StatusMaintained by NeuroonRecipe + templates maintained by NeuroonSelf-managed

Shopify is not supported as a plugin at this time. Shopify projects must use the custom path (CDN loader + server-to-server token issuance from a private app or an intermediate backend).

Two WordPress plugins, two different products

There are two WordPress plugins that share a domain but address different use cases:

PluginVersionPurpose
neuroon-search0.8.4Semantic search + catalog sync + embeddable widget. This is the piece these guides document.
neuroon-agentic-commerce0.1.0Universal Commerce Protocol (UCP) so AI agents (Google Search AI Mode, Gemini, ChatGPT) can discover and buy from your shop. Separate product, documented elsewhere.

Citation: defines Version: 0.8.4 and wordpress-plugin/neuroon-agentic-commerce/ is an independent plugin.

Which one to choose

Common public endpoints

Regardless of the path, every integration talks to the same small set of endpoints:

POST/api/plugin/shops/{shopId}/products/sync
POST/api/plugin/shops/{shopId}/verify
POST/api/shops/{id}/widget-token
POST/api/plugin/shops/{shopId}/track/conversion

If your platform is not listed above, the server-to-server pattern covers any stack: see recipes/server-to-server-token.

Support and contributions

  • Report issues on the public tracker or from the dashboard.
  • For critical custom integrations, contact the team (see resources/support).