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.
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
- Copy the Realie MCP server URL:
https://docs.realie.ai/mcp
- Add the URL to your AI tool of choice.
- 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:
Claude
Claude Code
Cursor
VS Code
To use the Mintlify MCP server with Claude:Add the Mintlify MCP server to Claude
- Navigate to the Connectors page in the Claude settings.
- Select Add custom connector.
- Add the Realie MCP server:
- Name:
Realie
- URL:
https://docs.realie.ai/mcp
- Select Add.
Access the MCP server in your chat
- When using Claude, select the attachments button (the plus icon).
- Select the Realie MCP server.
- Ask Claude a question to query property data.
To use the Realie MCP server with Claude Code, run the following command: claude mcp add --transport http Realie https://docs.realie.ai/mcp
Test the connection by running:See the Claude Code documentation for more details. Install in CursorTo connect the Realie MCP server to Cursor, click the Install in Cursor button. Or to manually connect the MCP server, follow these steps:Open MCP settings
-
Use Command + Shift + P
(Ctrl + Shift + P on Windows) to open the command palette.
-
Search for “Open MCP settings”.
-
Select Add custom MCP. This will open the
mcp.json file.
Configure the Realie MCP server
In mcp.json, add:{
"mcpServers": {
"Realie": {
"url": "https://docs.realie.ai/mcp"
}
}
}
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.
See Installing MCP servers in the Cursor documentation for more details. Install in VS CodeTo 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:{
"servers": {
"Realie": {
"type": "http",
"url": "https://docs.realie.ai/mcp"
}
}
}
See the VS Code documentation for more details.
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.
Prefer a CLI workflow? The Realie CLI lets AI agents query property data, manage keys, and check usage directly from the terminal with --json output.