Skip to main content

Connect this documentation to MCP

Mintlify hosts a Model Context Protocol (MCP) endpoint for this site. After you connect it in your AI tool, the assistant can search these docs for API details, configuration, and guides instead of guessing from memory.

Hosted MCP server

MCP URLhttps://docs.rpg-leveling.zuxaw.com/mcp
Search toolSearches the RPG Leveling Plugin knowledge base and returns relevant excerpts with links to doc pages. (In MCP clients it may appear as search_rpg_leveling_plugin or similar.)
Mintlify applies rate limits on MCP search (per IP and per site). For typical personal use this is usually enough; if searches fail repeatedly, wait a bit and try again.

Cursor

  1. Open the command palette: Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS).
  2. Run Open MCP settings (or MCP: Open Settings).
  3. Choose Add custom MCP (or edit mcp.json when prompted).
Add an entry under mcpServers (merge with any servers you already have):
{
  "mcpServers": {
    "rpg-leveling-docs": {
      "url": "https://docs.rpg-leveling.zuxaw.com/mcp"
    }
  }
}
Save the file, restart Cursor if it does not pick up the change immediately, then in chat you can confirm the server is listed among available tools. See Cursor’s guide: Installing MCP servers.

Claude Code (CLI)

Register the hosted server with HTTP transport:
claude mcp add --transport http rpg-leveling-docs https://docs.rpg-leveling.zuxaw.com/mcp
Verify:
claude mcp list
See Anthropic’s guide: Claude Code MCP.

OpenAI Codex (CLI / IDE)

Codex uses streamable HTTP MCP servers via config.toml (default: ~/.codex/config.toml, or .codex/config.toml in a trusted project). Add:
[mcp_servers.rpg-leveling-docs]
url = "https://docs.rpg-leveling.zuxaw.com/mcp"
Or use the CLI (supports --url for HTTP servers):
codex mcp add rpg-leveling-docs --url https://docs.rpg-leveling.zuxaw.com/mcp
Use codex mcp list to confirm. In the Codex TUI, the /mcp command shows active servers. See OpenAI’s guide: Model Context Protocol (Codex).

Claude on the web (claude.ai)

  1. Open Claude settings → Connectors.
  2. Click Add custom connector.
  3. Enter a name (for example RPG Leveling docs) and the MCP URL: https://docs.rpg-leveling.zuxaw.com/mcp.
  4. Complete any authentication prompts if shown.
In a conversation, attach or enable the connector so Claude can call the documentation search tool. See also: Using a remote MCP server (Model Context Protocol).

More detail

Mintlify’s overview of hosted doc MCP (search behavior, indexing, optional filters): Model Context Protocol.