Skip to main content
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:
{
  "mcpServers": {
    "nautilus": {
      "type": "url",
      "url": "https://docs.nautilus.co/mcp"
    }
  }
}

Claude Code

claude mcp add nautilus --transport sse https://docs.nautilus.co/mcp

Cursor

Add to your .cursor/mcp.json:
{
  "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.