> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.erlc.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP Server

## Overview

Our documentation is powered by [Mintlify](https://mintlify.com), which provides a number of features designed to make our docs more accessible and easier to navigate. One of these features is a hosted **MCP (Model Context Protocol) server** that lets AI tools and agents query our documentation directly.

## Endpoint

```text theme={null}
https://apidocs.erlc.gg/mcp
```

## What is MCP?

The Model Context Protocol is an open standard that allows AI assistants to connect to external data sources and tools. By pointing an MCP-compatible client at our server, your AI assistant can search, retrieve, and reason over our documentation in real time, without needing to copy and paste content manually.

## Connecting

You can connect any MCP-compatible client to our server. Below are some common setups.

### Claude Desktop

Add the following to your `claude_desktop_config.json`:

```json theme={null}
{
  "mcpServers": {
    "erlc-docs": {
      "url": "https://apidocs.erlc.gg/mcp"
    }
  }
}
```

### Cursor

Add the server in your Cursor MCP settings:

```json theme={null}
{
  "mcpServers": {
    "erlc-docs": {
      "url": "https://apidocs.erlc.gg/mcp"
    }
  }
}
```

### Other Clients

Any client that supports remote MCP servers can be pointed at the URL above. Refer to your client's documentation for the exact configuration format.

## Available Tools

Once connected, your client will have access to tools for:

* **Searching** the documentation by keyword or topic
* **Fetching** specific pages and sections
* **Navigating** the docs structure

## Why Use It?

* Ask your AI assistant questions about our API and get answers grounded in the latest docs
* Avoid hallucinated or outdated information
* Build agents and workflows that stay in sync with documentation changes automatically
