Accelerate development by connecting your favorite AI coding assistants to the DRIP docs and API. This page shows the fastest, safest ways to give AI the right context.
Never paste secrets into public chats. When AI tools ask for API keys, provide them securely via the tool’s secret manager or environment settings.

Model Context Protocol (MCP)

The Model Context Protocol lets AI tools query and call APIs directly against the DRIP docs.
  • Install the DRIP MCP server:
npx mint-mcp add driprewards

Use with Cursor

  1. Run the install command above.
  2. Open the command palette → “Open MCP settings” and confirm “driprewards” is listed.
  3. In chat, ask: “What tools do you have available?” You should see the DRIP docs search tool and any exposed endpoints.

Use with Claude

  • From any docs page, use the contextual menu → “Open in Claude” to start a conversation with this page as context.
  • Alternatively, add the DRIP docs MCP server using Claude’s Connectors flow if your workspace supports it.

llms.txt and llms-full.txt

llms files help AI index your docs efficiently.
  • Mintlify guide: llms.txt
  • DRIP docs expose:
    • https://docs.drip.re/llms.txt (site map for LLMs)
    • https://docs.drip.re/llms-full.txt (entire docs in one file)
How to use:
  • Add one of the above URLs in your AI editor’s settings so it can index DRIP docs for context-aware answers.
  • In tools that support it, reference docs explicitly in prompts (e.g., “Use DRIP docs for this task”).

Markdown export

Get clean Markdown versions of any page for better AI ingestion.
  • Mintlify guide: Markdown export
  • Add .md to any page URL on these docs (e.g., https://docs.drip.re/developer/app-development.md).
  • Many tools have a shortcut to copy a page as Markdown (Command + C in Mintlify).
  • Quick search + call generation: Ask your AI to “Find the points balance update endpoint in DRIP, generate Node/TS code using fetch with retries.”
  • Fix missing scopes: “Given this error, which scopes are required and how do I request reauthorization?”
  • Docs-first answer: “Summarize app authorization flow from DRIP docs, then produce a checklist for publishing.”
If you expose API tools via MCP, the AI will prompt you for your DRIP API key at call time. The key is handled by the client tool, not stored in the docs system.