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

# Realie MCP Server

> Access Realie's docs and API through your favorite AI tools

## About the Realie MCP Server

The Model Context Protocol (MCP) connects AI applications with external services in a standardized way. With the Realie MCP server, property data and documentation become directly accessible inside AI tools like Claude, Cursor, and Goose. This makes it easy for users to search Realie’s docs or query Realie’s APIs seamlessly from their preferred AI environment.

### How to connect

1. Copy the Realie MCP server URL:\
   **`https://docs.realie.ai/mcp`**
2. Add the URL to your AI tool of choice.
3. Start asking questions or running property data queries from within your AI workflows.

These are some of the ways you can  connect to the Realie MCP server:

<Tabs>
  <Tab title="Claude">
    To use the Mintlify MCP server with Claude:

    <Steps>
      <Step title="Add the Mintlify MCP server to Claude">
        1. Navigate to the [Connectors](https://claude.ai/settings/connectors) page in the Claude settings.
        2. Select **Add custom connector**.
        3. Add the Realie MCP server:

        * Name: `Realie`
        * URL: `https://docs.realie.ai/mcp`

        4. Select **Add**.
      </Step>

      <Step title="Access the MCP server in your chat">
        1. When using Claude, select the attachments button (the plus icon).
        2. Select the Realie MCP server.
        3. Ask Claude a question to query property data.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Claude Code">
    To use the Realie MCP server with Claude Code, run the following command:

    ```bash theme={null}
        claude mcp add --transport http Realie https://docs.realie.ai/mcp
    ```

    Test the connection by running:

    ```bash theme={null}
    claude mcp list
    ```

    See the [Claude Code documentation](https://docs.anthropic.com/en/docs/claude-code/mcp#installing-mcp-servers) for more details.
  </Tab>

  <Tab title="Cursor">
    Install in Cursor

    To connect the Realie MCP server to Cursor, click the **Install in Cursor** button. Or to manually connect the MCP server, follow these steps:

    <Steps>
      <Step title="Open MCP settings">
        1. Use <kbd>Command</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd>

           (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> on Windows) to open the command palette.
        2. Search for "Open MCP settings".
        3. Select **Add custom MCP**. This will open the `mcp.json` file.
      </Step>

      <Step title="Configure the Realie MCP server">
        In `mcp.json`, add:

        ```json theme={null}
        {
          "mcpServers": {
            "Realie": {
              "url": "https://docs.realie.ai/mcp"
            }
          }
        }
        ```
      </Step>

      <Step title="Test the connection">
        In Cursor's chat, ask "What tools do you have available?" Cursor should show the Realie MCP server as an available tool.
      </Step>
    </Steps>

    See [Installing MCP servers](https://docs.cursor.com/en/context/mcp#installing-mcp-servers) in the Cursor documentation for more details.
  </Tab>

  <Tab title="VS Code">
    Install in VS Code

    To connect the Realie MCP server to VS Code, click the **Install in VS Code** button. Or to manually connect the MCP server, create a `.vscode/mcp.json` file and add:

    ```json theme={null}
    {
      "servers": {
        "Realie": {
          "type": "http",
          "url": "https://docs.realie.ai/mcp"
        }
      }
    }
    ```

    See the [VS Code documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) for more details.
  </Tab>
</Tabs>

## Authentication

Realie’s API endpoints for MCP require an API key. When connecting through an AI tool, the tool will request a Realie API key at the moment it’s needed.

<Tip>
  Prefer a CLI workflow? The [Realie CLI](/realie-cli) lets AI agents query property data, manage keys, and check usage directly from the terminal with `--json` output.
</Tip>
