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

# MCP server

> Connect AI applications to Nautilus documentation via MCP

Nautilus provides a hosted MCP (Model Context Protocol) server that lets AI applications search and read our documentation directly.

## Connect

Add the following URL to your AI application's MCP configuration:

```
docs.nautilus.co/mcp
```

This works with any MCP-compatible client, including Claude Desktop, Cursor, Windsurf, and Claude Code.

### Claude Desktop

Add to your `claude_desktop_config.json`:

```json theme={null}
{
  "mcpServers": {
    "nautilus": {
      "type": "url",
      "url": "https://docs.nautilus.co/mcp"
    }
  }
}
```

### Claude Code

```bash theme={null}
claude mcp add nautilus --transport sse https://docs.nautilus.co/mcp
```

### Cursor

Add to your `.cursor/mcp.json`:

```json theme={null}
{
  "mcpServers": {
    "nautilus": {
      "type": "sse",
      "url": "https://docs.nautilus.co/mcp"
    }
  }
}
```

## Available tools

Once connected, AI clients have access to two tools:

### search\_nautilus

Search across the Nautilus knowledge base to find relevant information, code examples, API references, and guides. Returns contextual content with titles and direct links to documentation pages.

### get\_page\_nautilus

Retrieve the full content of a specific documentation page by its path. Use when you already know the page path (e.g., from search results) and need the complete content rather than a snippet.
