Skip to content
Current State: ALPHA - Use at your own risk / Work in Progress

Connectivity Overview

Eryxon MES provides a comprehensive set of connectivity options for integrating with external systems, industrial automation, and AI agents.

Eryxon MES uses a Unified Event Dispatcher to coordinate communication across different protocols.


All external API calls require a Bearer token:

Authorization: Bearer ery_live_xxxxxxxxxxxxxxxxxxxx
  • ery_live_: Production keys.
  • ery_test_: Sandbox/testing keys.

Model Context Protocol keys are configured separately in the Admin panel to allow AI agents like Claude to securely interact with your shop floor data. See the MCP Server Setup Guide for complete deployment instructions.


Eryxon uses Supabase Realtime (WebSockets) to push updates to the frontend and connected clients instantly.

We provide several React hooks to simplify real-time data binding:

  • useTableSubscription: Simple single-table listener.
  • useTenantSubscription: Automatically filters by the current tenant.
  • useEntitySubscription: Listens for changes to a specific record (e.g., one operation).

The Model Context Protocol (MCP) enables AI agents to interact with Eryxon MES programmatically through 55 specialized tools across 9 modules.

AI agents can:

  • Fetch and update jobs/parts
  • Start and complete operations
  • Report or resolve quality issues
  • Monitor dashboard statistics
  • Perform batch operations
  • Analyze scrap trends and quality metrics

Learn more:


All major actions (job created, operation started, issue reported) trigger events in our internal dispatcher, which then forwards the data to configured Webhooks and MQTT brokers simultaneously.


  • Export: Admins can export all tenant data in JSON or CSV (ZIP) formats for backup or migration.
  • Import: Supports bulk CSV imports for jobs, parts, cells, and resources.

  • 401 Unauthorized: Invalid API key.
  • 402 Payment Required: Plan limit reached.
  • 429 Too Many Requests: Rate limit exceeded.

Limits are applied per API key and vary by subscription plan (e.g., Free: 60 RPM, Professional: 1,000 RPM).