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

# Model Context Protocol (MCP)

> Connect your AI coding agents directly to Yuno's documentation.

The Model Context Protocol (MCP) allows AI tools like **Cursor**, **Windsurf**, and **Claude** to browse, search, and read Yuno's documentation in real-time. This ensures your AI assistant always has the latest context when helping you integrate Yuno.

## Documentation MCP URL

Use the following URL to connect your tools to the Yuno documentation:

[https://docs.y.uno/mcp](https://docs.y.uno/mcp)

***

## Connecting to AI Tools

### Cursor

1. Open **Cursor Settings** (`Cmd+Shift+P` or `Ctrl+Shift+P` -> "Open MCP Settings").
2. Click on **+ Add New MCP Server**.
3. Fill in the details:
   * **Name**: Yuno Docs
   * **Type**: `http`
   * **URL**: `https://docs.y.uno/mcp`
4. Click **Save**.

### Claude Desktop

1. Open your Claude Desktop configuration file (usually `~/Library/Application Support/Claude/claude_desktop_config.json` or `%APPDATA%\Claude\claude_desktop_config.json`).
2. Add the Yuno Docs connector to the `mcpServers` section:

```json theme={"theme":{"light":"github-dark","dark":"github-dark"}}
{
  "mcpServers": {
    "yuno-docs": {
      "url": "https://docs.y.uno/mcp"
    }
  }
}
```

### Windsurf / VS Code Copilot

For tools that support native MCP via folder configuration, create a `.vscode/mcp.json` file in your project:

```json theme={"theme":{"light":"github-dark","dark":"github-dark"}}
{
  "servers": {
    "yuno-docs": {
      "type": "http",
      "url": "https://docs.y.uno/mcp"
    }
  }
}
```
