> ## Documentation Index
> Fetch the complete documentation index at: https://daily-mb-reorg-api-reference-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AI-Assisted Development

> Use AI coding tools with Pipecat documentation and source code.

Pipecat offers several ways to give AI coding tools access to documentation and source code context, helping you build voice and multimodal applications faster.

## MCP Server

The Pipecat docs MCP server lets AI coding tools search across Pipecat documentation directly. This gives your AI assistant up-to-date knowledge about Pipecat APIs, services, and patterns.

### Claude Code

```bash theme={null}
claude mcp add --transport http pipecat-docs https://daily-docs.mcp.kapa.ai
```

### Codex

```bash theme={null}
codex mcp add pipecat-docs --url "https://daily-docs.mcp.kapa.ai"
```

### Cursor

<a href="cursor://anysphere.cursor-deeplink/mcp/install?name=pipecat-docs&config=eyJ1cmwiOiJodHRwczovL2RhaWx5LWRvY3MubWNwLmthcGEuYWkifQ%3D%3D">
  <img noZoom src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add Pipecat MCP to Cursor" height="32" />
</a>

Or manually add to your Cursor MCP config:

```json theme={null}
{
  "mcpServers": {
    "pipecat-docs": {
      "url": "https://daily-docs.mcp.kapa.ai"
    }
  }
}
```

### VS Code

<a href="vscode:mcp/install?%7B%22name%22%3A%22pipecat-docs%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fdaily-docs.mcp.kapa.ai%22%7D">
  <img noZoom src="https://img.shields.io/badge/VS_Code-Install_MCP_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white" alt="Add Pipecat MCP to VS Code" height="32" />
</a>

Or manually add to your VS Code MCP config (`.vscode/mcp.json`):

```json theme={null}
{
  "servers": {
    "pipecat-docs": {
      "url": "https://daily-docs.mcp.kapa.ai"
    }
  }
}
```

## CLAUDE.md

The Pipecat repository includes a [`CLAUDE.md`](https://github.com/pipecat-ai/pipecat/blob/main/CLAUDE.md) file that provides Claude Code with architecture guidance, coding conventions, and development patterns specific to the Pipecat codebase. When you work in a cloned copy of the Pipecat repo, Claude Code automatically reads this file for context.

## Markdown docs

Every page on this docs site has a **Copy page** button (in the top-right area) that copies the page content as markdown. This is useful for pasting into any AI chat or coding tool to provide context about a specific topic.

## llms.txt

Pipecat docs support the [llms.txt standard](https://llmstxt.org/), which provides a machine-readable index of documentation content. This is useful for tools that can ingest documentation in bulk.

* [`https://docs.pipecat.ai/llms.txt`](https://docs.pipecat.ai/llms.txt) — structured index of all pages
* [`https://docs.pipecat.ai/llms-full.txt`](https://docs.pipecat.ai/llms-full.txt) — full documentation content in a single file
