The CloverDX MCP Bridge library provides MCP (Model Context Protocol) functionality for CloverDX Server installations that do not natively support MCP (versions prior to 7.3).
It acts as a compatibility layer, enabling remote MCP operations such as log retrieval, license inspection, job execution tracking, and database access through Data Services exposed by the library.
This library is intended for environments where upgrading CloverDX Server is not immediately possible, but MCP-level monitoring and operational tooling are required.
The library exposes a full set of MCP APIs through Data Services.
After installation, you can run the provided initialization graph, which automatically publishes all MCP Data Services to the target CloverDX Server.
Once initialized, these APIs can be consumed remotely (e.g., via HTTP clients, internal tools, or automated monitoring).

The library exposes the following MCP-compatible Data Services.
Each service mirrors the behavior of the MCP API available in CloverDX 7.3+.
| Service | Description |
|---|---|
| MCP DatabaseExecutor | Executes SQL queries remotely on configured databases and returns result sets or update counts. |
| MCP DeploymentDescription | Retrieves information about deployed projects, including structure, metadata, and configuration details. |
| MCP ExecutionLog | Provides access to execution logs for jobs, graphs, and scheduled tasks. Supports filtering by execution ID. |
| MCP ExecutionTracking | Returns live and historical execution tracking data, including job statuses, timing, and run statistics. |
| MCP FileContent | Delivers the content of files stored on the server, such as logs or project resources. |
| MCP GrepLogFiles | Searches log files on the server using pattern-based filtering and returns matching lines. |
| MCP LicenseInfo | Exposes current server license details, including license type, expiration date, and feature availability. |
| MCP ReportSupportIssue | Submits diagnostic and environment details for support purposes, replicating MCP’s built-in reporting workflow. |
| MCP RetrievePerformanceLogs | Fetches performance metrics and system-level logs generated by the server for monitoring and diagnostics. |
To activate the library, run the PublishDataServices initialization graph.
This graph:
| Parameter | Label | Description |
|---|---|---|
CLOVER_SERVER_URL |
CloverDX Server URL | Base URL of the CloverDX Server where MCP Data Services will be published. |
CLOVER_SERVER_LOGIN |
CloverDX Server Username | Username used for authentication during service publication. |
CLOVER_SERVER_PASSWORD |
CloverDX Server Password | Password for server authentication (secure parameter). |
.clib files from the CloverDX Marketplace.clib files and installAfter installation, the library must be initialized to activate MCP functionality.
CloverDX Servers below version 7.3 do not natively expose MCP APIs.
This library provides those APIs through Data Services - but they must be published to the server before they can be used.
Run the PublishDataServices initialization graph included in the library.
The graph:
Without running this initialization graph, or the MCP endpoints will not be available.
| Parameter | Label | Description |
|---|---|---|
CLOVER_SERVER_URL |
CloverDX Server URL | Base URL of the CloverDX Server where MCP Data Services will be published. |
CLOVER_SERVER_LOGIN |
CloverDX Server Username | Username used for authentication during service publication. |
CLOVER_SERVER_PASSWORD |
CloverDX Server Password | Password for server authentication (secure parameter). |