A Model Context Protocol server bridging AI assistants to eConnect Core — face recognition, license plates, POS analytics, casino operations, and more.

Checking…
62
MCP Tools
7
Categories
3
Projects
🧠

Face Recognition

Query enrolled subjects, search detections, match events, and manage watch lists through natural language.

🚗

License Plate Recognition

Read LPR events, hot list lookups, detector status, and plate history queries.

🛒

POS Analytics

Transaction searches, exception monitoring, register status, and line-item detail drilldowns.

🎰

Casino Operations

Table & slot sessions, player profiles, cage transactions, Title 31 compliance, and aggregated stats.

🔐 Get Auth Token 📖 Quick Start Guide

Your MCP Endpoint

Add this URL as an MCP server in ChatGPT Desktop, VS Code, or Claude Desktop.

Quick Start Guide

1 Add this MCP Server to your AI client

  1. Open ChatGPT DesktopSettingsMCP Servers
  2. Click Add Server
  3. Enter a name (e.g. eConnect) and paste the MCP endpoint URL shown above
  4. Save & start a new chat — all 62 tools will be discovered automatically

Add to .vscode/mcp.json in your workspace:

{ "servers": { "eConnect MCP": { "type": "http", "url": "" } } }

Add to your claude_desktop_config.json:

{ "mcpServers": { "eConnect MCP": { "url": "" } } }

2 Get an Auth Token

Before you can query data you need to authenticate against your eConnect Core server. Use the Auth Token page to generate an encrypted token (click Copy with Prompt to get a ready-to-paste message), or ask your AI assistant directly:

"Get me an auth token for server myserver.example.com, username admin, password admin"
Port defaults to 443 (HTTPS) — you only need to specify it if your server uses a non-standard port. Tokens are encrypted with AES-256-GCM and last 7 days by default.

3 Login & Discover Plugins

Once you have a token, tell your AI assistant:

"Log in to eConnect using that token, then show me the installed plugins"

The assistant will call econnect_login → receive a session key → call econnect_plugins to discover what's available (Face/LPR, POS, Casino, etc.).

4 Start Querying

Now just ask questions in natural language:

  • "Find face subjects with last name starting with Smith"
  • "Show me the last 20 license plate reads"
  • "Get POS exceptions from the last 24 hours"
  • "List active table sessions in the casino"
  • "How many face detections happened today?"

All Endpoints

MethodPathDescription
POST /mcp MCP protocol — JSON-RPC over Streamable HTTP
GET /auth/ Browser-based auth token generator