The Dollr payment API (
https://api.heydollr.app) is separate from the documentation MCP (https://docs.heydollr.app/mcp). MCP only helps AI tools read these docs — it does not execute payments.Quick links
Copy page Markdown
On any doc page, open the contextual menu (top of page) → Copy page. Paste into your AI chat for questions about that specific guide or API concept. For whole-site context, prefer llms.txt or llms-full.txt over copying many pages manually.Documentation MCP (read-only)
Mintlify hosts a documentation MCP endpoint for this site. It lets compatible clients search and retrieve Dollr doc content. Endpoint:https://docs.heydollr.app/mcp
Use the MCP endpoint URL above in your client config.
Manual setup (Cursor)
Add to your user or projectmcp.json:
Manual setup (Claude Desktop)
Add a custom connector or MCP server pointing athttps://docs.heydollr.app/mcp per Anthropic’s current MCP documentation.
Manual setup (other clients)
Any MCP client that supports HTTP/SSE remote servers can use the same URL. Refer to your client’s docs for the exact config shape.Mintlify Assistant (built-in)
The docs site includes Mintlify’s Assistant panel on the right (header sparkle icon, Ask AI anchor, or Assistant in the contextual menu). It answers from published Dollr documentation.One-time setup (Mintlify Dashboard)
- Open Mintlify Dashboard → Assistant for the dollr_api_docs project.
- Enable the assistant.
- Add up to three starter questions (site-wide). Suggested copy — paste into the dashboard:
- Optional: set a deflection email (e.g.
dev@heydollr.app) when the assistant cannot answer. - Optional: add search domains only if you want the assistant to pull public context outside the docs.
.mintlify/Assistant.md in the repo (synced on deploy).
On-site behavior (already in repo)
- Open on load:
?assistant=openplusassets/javascripts/assistant-default-open.jsopens the panel by default; readers can close or expand it. Closing once keeps it closed for that browser session. - Keyboard shortcut: ⌘I (macOS) / Ctrl+I (Windows).
- Contextual menu: includes Assistant, Copy page, View, Claude, and ChatGPT.
Ask about the current page
The contextual menu also includes Open in Claude and Open in ChatGPT — they start a conversation with the current page as context. Use those for one-off questions; use llms.txt + MCP for building integrations.Agent guardrails (summary)
When implementing Dollr for production:- Auth — OAuth client credentials;
expires_inis in minutes; refresh before expiry. - Idempotency — Generate UUID v4
reference_idbeforePOST /v1/executions/*; poll status before retrying. - MoMo —
PROCESSINGcan last minutes; do not re-execute with a newreference_idduring that window. - Secrets — Server-side only; never in mobile apps or browser bundles.
- Support payload — Include
reference_id, HTTP status, redacted request/response,method,provider, market.
Related
- Quick Start
- Examples & tools
- ASSISTANT.md — repo context file for coding agents
