Coralogix MCP
The Coralogix Model Context Protocol (MCP) server lets external AI agents access and analyze Coralogix observability data—logs, metrics, and traces—via a remote streamable HTTP interface. Use it from Cequence AI Gateway to support AI-native troubleshooting and root cause analysis directly from your IDE or AI client.
1. Overview
Coralogix MCP is a remote, vendor-hosted MCP server. You connect to it from Cequence AI Gateway; the server uses Streamable HTTP and can be reached at a region-specific endpoint.
- Server URL (template):
https://api.{region}.coralogix.com/mgmt/api/v1/mcp - Default region:
us2. Other regions:us1,eu1,eu2,ap1,ap2,ap3,cx-ind-1(see Coralogix domain). - Transport: HTTP (Streamable HTTP)
- Hosted by: Coralogix
The server is fully remote and does not require local installation. It bridges your AI tooling and Coralogix telemetry so you can investigate issues and get fix suggestions without extra project configuration.
2. Supported authentication types
| Type | Supported | Notes |
|---|---|---|
| OAuth 2.0 | Yes | Recommended for Cequence AI Gateway. OAuth 2.0 with Dynamic Client Registration (DCR). You can also use OAuth 2.1 with OpenID Connect (OIDC) for MCP authorization. |
| API key | Yes | Personal Coralogix API key in the Authorization: Bearer <key> header. Scoped per user (least-privilege). Useful for direct integration (e.g. Cursor) or when OAuth is not used. |
When you add Coralogix MCP in Cequence AI Gateway, authentication is typically OAuth 2.0 with DCR. If you use API key instead, the MCP server inherits the permissions of that user’s personal API key. See MCP Permissions.
3. What can you do with this MCP server
With the Coralogix MCP server, you can:
- Query logs, metrics, and traces — Access and analyze observability data from your Coralogix account.
- Execute DataPrime queries — Run DataPrime queries with formatting optimized for Cursor and similar tools.
- Investigate issues from your IDE — Perform root cause analysis and explore telemetry without leaving your editor.
- Receive AI-generated fix suggestions — Get fix suggestions based on your code and observability data (e.g. “Show me the most frequent errors for service XYZ in the past week” then “Now, fix the issue”).
- Start sessions with natural language — Ask when an issue started, which functions are problematic, or for summaries of errors and logs.
Access is scoped per user, auditable, and designed to be safe and compliant. See Coralogix MCP Server Overview and Tools (logs, metrics, traces, reference) for full capabilities.
4. Prerequisites
Before adding Coralogix MCP in Cequence AI Gateway, ensure you have:
- Access to Cequence AI Gateway (e.g. beta.aigateway.cequence.ai)
- A Coralogix account with the data you want to query (logs, metrics, traces)
- Node.js installed if you use
mcp-remoteor other local proxy for clients that do not support remote MCP - For OAuth authentication: an auth app with client credentials in your vendor account, unless the server supports Dynamic Client Registration (DCR). Coralogix MCP supports DCR for OAuth.
- For API key: a personal Coralogix API key with the permissions you need; the MCP server inherits that key’s permissions.
If your Coralogix deployment uses a specific region/domain (e.g. EU1, AP1), have that region value ready; you may need to set it when creating the MCP server in the gateway (e.g. eu1, us2).
5. Example workflows
- “Show me the most frequent errors for service XYZ in the past week.”
- “When did the issue start?”
- “Now, fix the issue.” (for agent-based IDEs like Cursor, after the assistant has identified the problem)
- Run a DataPrime query to aggregate or filter logs, metrics, or traces from your Coralogix account.
6. Connecting MCP server from Cequence AI Gateway
- Log in to Cequence AI Gateway.
- Choose your tenant.
- Go to App catalogue.
- Filter by Remote MCP server.
- Search for Coralogix MCP and then select it.
- Click Create MCP server.
- Choose auth method. If OAuth, you need an auth app with client credentials in your vendor account (see Prerequisites). If using API key, configure the Coralogix API key as required by the gateway.
- If prompted, set the region (e.g.
us2,eu1) so the server URL matches your Coralogix domain. - Complete the setup as prompted, select tools, and deploy.
Use the generated MCP server URL in your client as described in the Client Configuration docs. For detailed UI steps and screenshots, see Create a third-party MCP Server.
7. Additional information
- Region-specific endpoints: The MCP endpoint is
https://api.{region}.coralogix.com/mgmt/api/v1/mcp. Use the region that matches your Coralogix domain (e.g. US2:api.us2.coralogix.com, EU1:api.eu1.coralogix.com). See Coralogix Endpoints. - Timeout: The remote server uses a 30-second timeout for requests.
- Security: Access is per-user (API key or OAuth), least-privilege, and designed to be auditable and compliant. For proxy environments, see Using a proxy for outbound connections.
- Official documentation: Coralogix MCP Server Overview, Setup, OAuth, Tools, Permissions, Limitations.