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

# AI Features

> Livepeer Docs includes built-in AI features for connecting AI clients, LLM tooling, and agent workflows directly to the documentation.

## Hosted MCP Server

The Livepeer Docs exposes a hosted [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server that allows AI clients to query documentation content directly.

### Endpoint

```
https://docs.livepeer.org/mcp
```

Use this URL to connect any MCP-compatible AI client to the Livepeer documentation.

### Available Tools

| Tool                   | Description                                                                                                                                                                                             |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `search_livepeer_docs` | Search across the Livepeer Docs knowledge base to find relevant information, code examples, API references, and guides. Returns contextual content with titles and direct links to documentation pages. |

### How to Connect

<Tabs>
  <Tab title="Claude">
    In Claude's settings, add a new MCP server:

    1. Open **Settings → Integrations → MCP Servers**
    2. Add a new server with the URL `https://docs.livepeer.org/mcp`
    3. Claude can now query Livepeer documentation directly in any conversation
  </Tab>

  <Tab title="Cursor">
    In Cursor, add the MCP server to your project or global config:

    ```json theme={"theme":{"light":"github-light","dark":"dark-plus"}}
    {
      "mcpServers": {
        "livepeer-docs": {
          "url": "https://docs.livepeer.org/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Other Clients">
    Any MCP-compatible client can connect using the hosted endpoint:

    * Server URL: `https://docs.livepeer.org/mcp`
    * Transport: HTTP (SSE)
    * Authentication: None required
  </Tab>
</Tabs>

<Tip>
  The MCP server is read-only and requires no API key. It gives AI clients grounded access to current Livepeer documentation rather than relying on training data.
</Tip>

## llms.txt

The docs publish a standard `llms.txt` file – a community convention for helping LLMs understand a site's structure and content.

### Endpoint

```
https://docs.livepeer.org/llms.txt
```

This file contains a structured sitemap of the documentation hierarchy and is auto-generated by the docs platform. LLM tooling, RAG pipelines, and AI agents can fetch this file to understand what documentation exists before querying specific pages.

<Tip>
  `llms.txt` follows the emerging [llms.txt standard](https://llmstxt.org/) for making web content more accessible to language models.
</Tip>

## skill.md

The docs also publish a `skill.md` file – an AI-readable summary of Livepeer's developer platform capabilities, designed for use as an AI assistant skill or system prompt context.

### Endpoint

```
https://docs.livepeer.org/skill.md
```

This file provides a concise, structured overview of Livepeer Studio's core workflows, authentication patterns, and key implementation details – formatted for direct inclusion in AI system prompts or agent context windows.
