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

# Ravion Docs MCP

> Connect Claude, Cursor, and other AI tools to the Ravion Docs MCP server so agents can search and read Ravion documentation in context.

Ravion Docs includes a hosted Model Context Protocol (MCP) server for your AI tools.

## Quick setup

Use `add-mcp` to add Ravion Docs to supported MCP clients:

```bash theme={null}
npx add-mcp https://www.ravion.com/docs/mcp
```

The installer supports tools like Claude Code, Cursor, OpenCode, VS Code, and Codex. If your client supports remote HTTP MCP servers directly, you can also use the server URL in the client configuration.

## What the MCP server can do

The MCP server gives connected tools read-only access to indexed Ravion documentation.

It can:

* Search Ravion Docs for relevant pages
* Read documentation pages as Markdown
* Browse the docs through a virtual filesystem
* Use current docs content instead of relying on model training data

## Add it to Claude Code

Run this command from your terminal:

```bash theme={null}
claude mcp add --transport http ravion-docs https://www.ravion.com/docs/mcp
```

Then ask Claude Code questions about Ravion. Claude can use the MCP server when it needs documentation context.

## Add it to Cursor

Open your MCP settings in Cursor and add this server:

```json theme={null}
{
  "mcpServers": {
    "ravion-docs": {
      "url": "https://www.ravion.com/docs/mcp"
    }
  }
}
```

Reload Cursor after saving the MCP configuration.

## Add it to another MCP client

Use the remote HTTP MCP transport and set the server URL to:

```text theme={null}
https://www.ravion.com/docs/mcp
```

If your client supports MCP discovery, use:

```text theme={null}
https://www.ravion.com/docs/.well-known/mcp
```

## Notes

* The MCP server is read-only.
* It searches indexed public pages from Ravion Docs.
* You do not need a Ravion API key to use the public docs MCP server.
