Catalog Search (Mendix Platform Service Registry)

SkillSearch

Lets your agent search your organisation's Mendix service registry to find published services to consume.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Catalog Search (Mendix Platform Service Registry) skill

About this capability

Search the Mendix Catalog platform service registry (catalog.mendix.com) from the CLI to find services published across an organisation. Use when looking for an existing published service to consume. This is the external registry, not the MDL CATALOG keyword, for that see browse-integrations.

What this skill tells your AI

The instructions your AI receives, as published by mendixlabs/mxcli in .claude/skills/mendix/catalog-search/SKILL.md and read by ahel’s review.

Search and discover services registered in Mendix Catalog (catalog.mendix.com) programmatically.

⚠️ NOTE: This is the external Mendix Catalog service (CLI: mxcli catalog search), NOT the MDL CATALOG keyword which queries local project metadata tables (SELECT ... FROM CATALOG.entities). See .claude/skills/mendix/browse-integrations for MDL CATALOG queries.

Authentication Required

Catalog search requires a Personal Access Token (PAT):

# One-time setup
mxcli auth login

Create a PAT at: https://user-settings.mendix.com/ (Developer Settings → Personal Access Tokens)

Basic Usage

# Search for services
mxcli catalog search "customer"

# Filter by service type
mxcli catalog search "order" --service-type OData
mxcli catalog search "api" --service-type REST

# Production endpoints only
mxcli catalog search "inventory" --production-only

# Services you own
mxcli catalog search "sales" --owned-only

# JSON output for scripting
mxcli catalog search "data" --json | jq '.[] | {name, uuid, type}'

Output Formats

Table (default):

NAME                TYPE   VERSION  APPLICATION           ENVIRONMENT   PROD  UUID
CustomerService     OData  1.2.0    CRM Application       Production    Yes   a7f3c2d1-4b5e-6c7f-8d9e-0a1b2c3d4e5f
OrderAPI            REST   2.0.1    E-commerce Platform   Acceptance    No    b8e4d3e2-1a2b-3c4d-5e6f-7a8b9c0d1e2f
InventorySync       SOAP   1.0.0    Warehouse System      Test          No    c9f5e4f3-2b3c-4d5e-6f7a-8b9c0d1e2f3a

Total: 42 results (showing 1-3)
  • NAME: Service name (truncated if > 22 chars)
  • TYPE: OData, REST, SOAP
  • VERSION: Service version
  • APPLICATION: Hosting application name
  • ENVIRONMENT: Production, Acceptance, Test
  • PROD: "Yes" if production, blank otherwise
  • UUID: Full UUID (36 chars) - copy this for use with mxcli catalog show <uuid>

JSON mode:

mxcli catalog search "customer" --json

Returns full endpoint details including:

  • Complete UUIDs
  • Descriptions
  • Security classification
  • Last updated timestamp
  • Entity and action metadata (for OData)

Pagination

# First 10 results
mxcli catalog search "api" --limit 10

# Next 10 results
mxcli catalog search "api" --limit 10 --offset 10

# Maximum 100 per request
mxcli catalog search "service" --limit 100

Common Use Cases

Find production OData services:

mxcli catalog search "customer" --service-type OData --production-only

Get UUIDs for automation:

mxcli catalog search "order" --json | jq -r '.[] | .uuid'

Generate service inventory report:

mxcli catalog search "api" --json | \
  jq -r '.[] | "\(.name) (\(.serviceType)) - \(.application.name)"'

Filter by multiple criteria:

mxcli catalog search "data" \
  --service-type OData \
  --production-only \
  --limit 50

Flags

FlagTypeDefaultDescription
--profilestring"default"Auth profile name
--service-typestring(all)Filter by OData, REST, or SOAP
--production-onlyboolfalseShow only production endpoints
--owned-onlyboolfalseShow only owned services
--limitint20Results per page (max 100)
--offsetint0Pagination offset
--jsonboolfalseOutput as JSON array

Error Handling

No credential:

Error: no credential found. Run: mxcli auth login

Authentication failed:

Error: authentication failed. Run: mxcli auth login

Solution: Log in with a valid PAT.

Network errors: Catalog API requires internet connectivity. Check network connection and firewall settings.

Future Features

Phase 2 (not yet implemented):

  • mxcli catalog show <uuid> - Display detailed endpoint metadata
  • mxcli catalog create-odata-client <uuid> - Generate OData client from Catalog entry
  • Interactive search UI with arrow-key navigation

See GitHub issue #213 for architecture discussion.

Disambiguation: Two Different "Catalogs"

Mendix Catalog (this skill):

  • What: External service registry at catalog.mendix.com
  • CLI: mxcli catalog search "customer", mxcli catalog show <uuid>
  • Purpose: Discover OData/REST/SOAP services across your organization
  • Requires: Platform authentication (PAT token)
  • Data source: Mendix cloud service

MDL CATALOG keyword (different concept):

  • What: Local project metadata tables in the mxcli SQLite database
  • MDL syntax: SELECT ... FROM CATALOG.entities, SHOW CATALOG TABLES
  • Purpose: Query project structure (entities, microflows, pages, etc.)
  • Requires: REFRESH CATALOG command (no auth needed)
  • Data source: Your local .mpr file

See .claude/skills/mendix/browse-integrations for MDL CATALOG usage.

Related

  • Platform authentication: .claude/skills/mendix/platform-auth.md
  • OData client creation: .claude/skills/mendix/odata-data-sharing
  • MDL CATALOG queries: .claude/skills/mendix/browse-integrations

Signals

GitHub stars
122
Forks
49
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
catalog-search
Source
github.com/mendixlabs/mxcli