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

# MCP Server

> Connect an AI tool to search the ai-coustics docs directly

> What our MCP server exposes, and how to connect your AI tool to it.

## Overview

Our documentation is available as an MCP (Model Context Protocol) server. MCP is an open standard that lets AI tools connect directly to a source of content and pull from it live, rather than relying on training data or a generic web search.

Once connected, your AI tool can search these docs and retrieve full pages while it's helping you — for example, checking model compatibility, SDK setup, or integration steps straight from the source.

## Server URL

```
https://docs.ai-coustics.com/mcp
```

## What It Exposes

* **Search**: finds relevant pages across these docs for broad or conceptual questions, returning titles, links, and snippets.
* **Filesystem query**: a read-only, sandboxed tool for reading a specific page in full, or for exact keyword and regex matching across the docs — useful once search has narrowed things down.
* **Feedback**: lets a connected agent flag a page back to us as outdated, incorrect, or confusing.

The server is read-only and scoped to this documentation site. It has no access to your account, license key, or usage data, and can't take any action beyond searching, reading, and submitting feedback.

## Connect Your Tool

<Tabs>
  <Tab title="Claude">
    1. Go to [Settings → Connectors](https://claude.ai/settings/connectors)
    2. Click **Add custom connector**
    3. Name: `ai-coustics docs`, URL: `https://docs.ai-coustics.com/mcp`
    4. Click **Add**
    5. In a chat, click the attachments (+) button and select the connector
  </Tab>

  <Tab title="Claude Code">
    ```bash theme={null}
    claude mcp add --transport http ai-coustics-docs https://docs.ai-coustics.com/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    Open the command palette → **Open MCP settings** → **Add custom MCP**, then add to `mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "ai-coustics-docs": {
          "url": "https://docs.ai-coustics.com/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Create `.vscode/mcp.json` and add:

    ```json theme={null}
    {
      "servers": {
        "ai-coustics-docs": {
          "type": "http",
          "url": "https://docs.ai-coustics.com/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>
