For the complete documentation index, see llms.txt. This page is also available as Markdown.

Build with AI coding agents

Use AI agents to query UR documentation and build integrations faster.

Use AI in your UR integration workflow. We provide tools that give AI agents direct access to our documentation, so you can ask questions, generate code, and build integrations without copy-pasting docs into prompts.

Install the UR Docs MCP server

Our Model Context Protocol (MCP) server gives any AI coding assistant direct access to UR documentation. Three tools are available to any connected client:

Tool
What it does

search_docs

Search docs by keyword

get_page

Get full page content in markdown

list_pages

Browse all pages and their hierarchy

Claude Code

Run in your terminal:

claude mcp add ur-docs --transport http https://ur-docs-mcp-production.up.railway.app/mcp

Claude Desktop

Add to your config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "ur-docs": {
      "url": "https://ur-docs-mcp-production.up.railway.app/mcp"
    }
  }
}

Cursor

Open Settings > MCP Servers > Add new server:

  • Name: ur-docs

  • Type: HTTP

  • URL: https://ur-docs-mcp-production.up.railway.app/mcp

VS Code (Copilot)

Add to .vscode/mcp.json in your project:

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

Plain text docs

You can access our documentation as plain text at docs.ur.app/llms-full.txt. This helps AI tools consume our content directly and allows you to paste full documentation context into an LLM.

Plain text is preferable to scraping HTML because:

  • Fewer formatting tokens

  • LLMs parse and understand markdown hierarchy

  • Content hidden in tabs or collapsed sections is included

Try it

After setting up the MCP server, restart your AI client and try:

  • "What is UR and how does the account layer work?"

  • "How do I integrate with UR in Managed Custody Mode?"

  • "What's the user lifecycle from KYC to card spending?"

  • "Search UR docs for tokenized deposits"

Your assistant will search and read our docs to give you an accurate, up-to-date answer.

Last updated