eConnect
eConnect is the leading facial-recognition intelligence platform for casinos, stadiums, and venues. Recognize who matters the instant they arrive, link faces to IDs, plates, and transactions, and turn the cameras you already run into a searchable identity layer.
https://econnect.aiOpens ChatGPT on the web or desktop and asks it to use the WebMCP tools available here.
Connect straight to this server’s public endpoint.
https://mcp.econnect.ai/mcpWe add this server to your workspace, then open Studio — saved access, one connection to many servers, with a history of what ran.
Last probed Sep 14, 2026 · mcp.econnect.ai
78tools discovered
Showing 25 of 78 from the live probe.
Econnect Subject Lp Associations
Query associations between subjects (face recognition) and license plates (LPR). This is the key cross-reference tool — given a SubjectId, find their associated vehicles; given a LicensePlateId, find the associated person. Use econnect_subjects to get SubjectIds and econnect_license_plates to get LicensePlate IDs, then pass them here to discover links.
Econnect Casino Shift Report
Query gaming floor shift reports — shift open/close times, seconds open, round counts, rating counts per device. ShiftClosed is null when the shift is still open. Filterable fields: GamingDeviceName (string), GamingDeviceNumber (string), ShiftOpen (DateTime), ShiftClosed (DateTime?), SecondsOpen (int), RoundCount (int), RatingCount (int), FirstRound (DateTime), DataOwnerId (short). Filter examples: GamingDeviceName.Contains("BJ"), SecondsOpen > 28800, RatingCount > 0. 🕐 UTC: All time parameters
Econnect Lp Stats
Query license plate statistics — detection counts and last-detected timestamps per plate. No time range needed. Filterable fields: Plate (string), LpId (int), Similar1 (string), Detected (int?, detection count), LastDetected (DateTime?), VehicleState (string). query_params uses C# Dynamic LINQ syntax. Examples: Detected > 5, Plate.Contains("ABC"). 🕐 UTC: All time parameters (time_newest, time_oldest) must be in UTC. The plugin's timezone (from econnect_plugins) indicates site local time — conver
Econnect Aggregate Fields
Discover available fields for aggregate queries on Object Analytics plugins. Returns simple field names (for econnect_aggregate) AND grouping fields with functions (for grouping queries). Always call this first to learn valid query_type values and field names before running aggregate tools. Valid query_type values: 'ObjectDataCountView', 'FusionDataView', 'SubjectDatumViewItem', 'SubjectDatumTagViewItem', 'SubjectDetectionDemographicViewItem', 'SubjectFusionDatumViewItem', 'LicensePlateDatumView
Econnect Lp Notify Similar
Query license plate detections matched via fuzzy/similar-plate matching against watchlists. Shows the incoming plate vs. the matched watchlist plate. Filterable fields: IncomingPlate (string), SimilarPlate (string), LpId (int), SimilarLpId (int), TagName (string), NotifyName (string), AlertPriority (byte), LpDetectorId (int), DetectorName (string), DataTimeStamp (DateTime). query_params uses C# Dynamic LINQ syntax. Examples: TagName.Contains("Stolen"), IncomingPlate.Contains("ABC"). 🕐 UTC: All t
Econnect Subject Tags
Lookup Object Analytics subject tags (watchlists) for ID/name context. Use this before tag-based filtering in subject or license-plate tools. Subject tags are shared across face and LPR watchlist flows. Filter by exact ID and/or partial name. Key fields: SubjectTagId, TagName, IsDisabled, TagRemoveAction, DefaultExpireInDays.
Econnect Casino Events
Query casino journal events — slot machine transactions, device events, lookup values. Raw event log from the casino management system. TransactionTypeId values: 0=None, 1=CoinIn, 2=CoinOut, 3=Jackpot, 4=GamesPlayed, 5=GamesWon, 6=CoinDrop, 7=PlayerCardIn, 8=PlayerCardOut, 9=BillsIn, 10=TicketIn, 11=TicketOut. Filterable fields: GamingDeviceName (string), GamingDeviceNumber (string), TransactionTypeId (int), LookupTypeId (int), ValueNumeric (decimal), ValueString (string), DataTimeStamp (DateTim
Econnect Casino Gaming Floor
Query gaming floor statistics — game pace, occupancy, turnover, average bets, game rounds per device. Real-time floor performance metrics. Filterable fields: GamingDeviceName (string), GamingDeviceNumber (string), GameTypeName (string), GamePace (decimal), GamePaceCurrent (decimal), Occupancy (decimal), Turnover (decimal), AverageBet (decimal), GameRounds (int), Minutes (int), DealerName (string), DataTimeStamp (DateTime). Filter examples: Occupancy > 0.5, GameTypeName.Contains("Blackjack"), Ave
Econnect License Plates
Query enrolled license plates in the system. Returns plate numbers, vehicle info (make, model, color, state). Each plate has a LicensePlateId that links to: detections (econnect_lp_detections), watchlist hits (econnect_lp_notify_tags), similar matches (econnect_lp_notify_similar), stats (econnect_lp_stats), and subject associations (econnect_subject_lp_associations to find linked people). Filterable fields: Plate (string, plate number), Similar1 (string, alternate read), VehicleColor (string), V
Econnect Aggregate Numeric
Submit a numeric aggregate query (Sum, Avg, Min, Max, Count per column). Returns one AggregateNumericItem per column+aggregateType. Valid query_type values: same as econnect_aggregate. Use econnect_aggregate_fields to discover which numeric columns are available. query_params uses C# Dynamic LINQ syntax. Examples: DetectorId in (1,2,3), SubjectId in (100,200), ObjectCount >= 10. 🕐 UTC: All time parameters (time_newest, time_oldest) must be in UTC. The plugin's timezone (from econnect_plugins) in
Econnect Query Count
Submit a query-count histogram. Splits the date range into buckets (by minuteResolution) and returns record counts per bucket. Useful for activity volume charts. view_id maps to ObjectAnalyticsViewEnum: 0=ObjectData, 2=SubjectData, 3=SubjectFusionData, 4=SubjectNotifyTagData, 5=SubjectDataTags, 6=LicensePlateData, 7=LicensePlateNotifyTagData, 10=SubjectDetectedDemographics, 11=SubjectZoneVisitData. query_params uses C# Dynamic LINQ syntax. Examples: DetectorId in (1,2,3), SubjectId == 100, Objec
Econnect Subject Tag Actions
Lookup Object Analytics tag actions (notification options) for context. Returns actions associated with each subject tag, including action IDs and names used by alert workflows. Filter by tag ID/name and/or action ID/name.
Server Info
Returns basic server information such as version, uptime, and environment.
Econnect Witness Snapshot Url
Generate a proxy URL for a witness camera snapshot image (JPEG). Use this when you have a witness plugin and a camera device GUID, and optionally need a snapshot near a specific timestamp.
Econnect Subject Data Tag View
Query subject detection data with tag associations. Returns detections with subject name, tag name, confidence. Extends subject_data_view with tag info. Filterable fields: all SubjectDatumViewItem fields PLUS TagName (string), SubjectTagId (int). query_params uses C# Dynamic LINQ syntax. Examples: TagName.Contains("VIP"), Confidence >= 0.9, SubjectName.StartsWith("Whidden"), SubjectTagId in (1,5). 🕐 UTC: All time parameters (time_newest, time_oldest) must be in UTC. The plugin's timezone (from e
Econnect Plugin Associations By Parent Ids
Get generic plugin associations by one or more parent associable GUIDs.
Econnect Change User Group
Change the active eConnect user group (customer dataset context). Authorization requires either IsSuperUser=true on the current session user, or a valid change-group permission key. This tool checks both before attempting the switch.
Econnect Object Data View
Query raw object analytics data — people/vehicle counts, region IDs, analytic types, timestamps. Low-level detector telemetry. Filterable fields: Name (string), AnalyticType (string), ObjectCount (int), ObjectIn (int), ObjectOut (int), RegionId (int), UniqueId (Guid), DataTimeStamp (DateTime). query_params uses C# Dynamic LINQ syntax. Examples: ObjectCount >= 5, Name.Contains("lobby"), AnalyticType == "PeopleCount", RegionId in (1,2,3), ObjectCount > 0 && Name.StartsWith("cam"). 🕐 UTC: All time
Econnect Pos Aggregate Fields
Discover available fields for POS aggregate queries — returns simple, numeric, and grouping fields with available functions. Valid query_type values: 'POSDataEventItem' (main events view with joins — Employee, Terminal, Revenue Center, BasicData, Amount, TableNumber, GroupNumber, EventTypeId, ObjectNumber, MenuItem, MenuItemTotal, Discount, DiscountTotal, PaymentType, PaymentTypeTotal, CheckNumber, AuthEmployeeEmployee + Hour/Date/Day/Count), 'PosDataEventScoreViewItem' (events with scores), 'PO
Econnect Pos Entities
List POS entities from DataEntityGetAll — employees, terminals, revenue centers. Supports entity_type_id: 1=RevenueCenter, 2=Terminal, 3=Employee. Association GUID payloads are optional and OFF by default to reduce response size/token usage. ⚡ QUERY STRATEGY: This is a lookup/entity list — no pagination or date range. Returns all entities in one call. Use entity_type_id to filter by type. Use returned POSDataEntityID values in 'in' syntax for other POS queries.
Econnect Casino Tito
Query TITO (Ticket-In/Ticket-Out) records. Returns ticket amounts, barcodes, player info, device info, and transaction status. TransactionStatusId values: 200=Active, 201=Pending, 202=Redeemed, 203=Voided, 204=Expired, 205=Unredeemable, 206=Deleted, 207=Unknown. Workflow: tickets start as Active (200), may go to Pending (201), then get Redeemed (202) when cashed. Filterable fields: TicketAmount (decimal), TicketBarcode (string), TicketId (string), TransactionStatusId (int), GamingDeviceName (str
Econnect User Groups
List user groups for a reseller. If reseller_id is omitted, defaults to the reseller that owns the current session's user group (from UserSessionItem.CurrentUserGroupID). Use this before econnect_change_user_group.
Econnect Casino Game Types
List casino game types (for example Blackjack, Roulette) with IDs and metadata.
Econnect Subject Demographics
Query subject detections with demographic data (age, gender, employer, membership, address). Useful for visitor profiling & analytics. Gender values stored as: 'M' (Male), 'F' (Female), 'U' (Unknown). Filterable fields: SubjectName (string), SubjectId (int), Confidence (decimal), DetectorId (int), Age (decimal), Gender (string: M/F/U), Department (string), Employer (string), MembershipNumber (string), MembershipTier (string), Region (string, state/province), PostalCodeSimple (string, zip), Local
Econnect Aggregate Segments
Submit a numeric aggregate over time segments. Splits the date range into segments (by secondResolution) and returns per-segment numeric aggregates. Common resolutions: 300 (5 min), 900 (15 min), 3600 (1 hour), 86400 (1 day). Valid query_type values: same as econnect_aggregate. query_params uses C# Dynamic LINQ syntax. Examples: DetectorId in (1,2), SubjectId in (100,200), ObjectCount >= 10 && RegionId == 2. 🕐 UTC: All time parameters (time_newest, time_oldest) must be in UTC. The plugin's timez
Get your MCP into directories
A working endpoint is step one. Directory coverage is the coordinated launch across ChatGPT, Claude, Cursor, the MCP Registry, and community indexes.
Directory coverage for brandseConnect is the leading facial-recognition intelligence platform for casinos, stadiums, and venues. Recognize who matters the instant they arrive, link faces to IDs, plates, and transactions, and turn the cameras you already run into a searchable identity layer.
Use the MCP endpoint listed on this page in your MCP client configuration. One-click install pills support Claude, Cursor, VS Code, and other hosts. Copy the remote MCP URL if your client needs a manual entry.
MCPBundles probed 78 tools on the live server. The tool list on this page reflects what was discovered at the last refresh — connect your client to see the full set available to your session.
No provider sign-in was required during MCPBundles' probe. Your client may still need MCPBundles credentials depending on how you connect.
Operate eConnect? Verify ownership to take over this directory entry.
This server appears in the MCPBundles directory. Verify you operate it to take over the listing — name, description, logo, contact email, and skill content. We email a 6-digit code to a maintainer address your server publishes in /.well-known/security.txt or /.well-known/mcpbundles.json. Free, takes about a minute.