Skip to content

MCP Server

WARNING

This feature is currently in preview. Specifications and behavior are subject to change without notice.

What is the MCP Server?

The MCP (Model Context Protocol) server is an interface for accessing ZEN Advisor functionality from AI assistants and LLM-based tools.
By using the MCP server, you can perform operations such as creating and reviewing service requests through AI assistants.

Endpoint

The MCP server endpoint is as follows:

https://api.zenadvisor.io/runtime/webhooks/mcp

Authentication

Using the MCP server requires the same Microsoft Entra ID account used to log in to ZEN Advisor.
You will be prompted to authenticate when connecting from an MCP client for the first time. Please sign in with the same account you use for ZEN Advisor.

Available Tools

The following tools are currently available:

Tool NameDescription
zenadvisor_searchSearch service requests
zenadvisor_fetchFetch service request details

How to Use

Add the above endpoint to your MCP-compatible client (GitHub Copilot, Claude Desktop, etc.) configuration.

Configuration Example

json
{
  "servers": {
    "zenadvisor": {
      "url": "https://api.zenadvisor.io/runtime/webhooks/mcp"
    }
  }
}