> ## Documentation Index
> Fetch the complete documentation index at: https://docs.donate.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP Server

> Connect donate.gg docs to your AI tools via Model Context Protocol

Integrate faster with donate.gg by connecting our docs directly to your AI coding tools.

## Overview

Model Context Protocol (MCP) is an open standard that lets AI tools like Claude, Cursor, and VS Code search your documentation in real time instead of relying on training data.

Once connected, your AI assistant can search donate.gg docs on demand while you work.

* **Name:** donate.gg Docs
* **URL:** `https://docs.donate.gg/mcp`
* **Transport:** Streamable HTTP

## Installation

<Tabs>
  <Tab title="Claude Code">
    Run the following command in your terminal:

    ```bash theme={null}
    claude mcp add --transport http donategg-docs https://docs.donate.gg/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    Open the command palette (`Cmd/Ctrl + Shift + P`) and select `> Cursor Settings > Tools & MCP > Add Custom MCP`:

    ```json theme={null}
    {
      "mcpServers": {
        "donate.gg Docs": {
          "type": "http",
          "url": "https://docs.donate.gg/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Open the command palette (`Cmd/Ctrl + Shift + P`) and select `MCP: Open User Configuration`:

    ```json theme={null}
    {
      "servers": {
        "donate.gg Docs": {
          "type": "http",
          "url": "https://docs.donate.gg/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Claude">
    1. Go to [Claude Settings → Connectors](https://claude.ai/settings/connectors)
    2. Select **Add custom connector**
    3. Enter:
       * **Name:** donate.gg Docs
       * **URL:** `https://docs.donate.gg/mcp`
    4. Select **Add**

    When chatting, select the attachments button and choose the donate.gg Docs connector.
  </Tab>
</Tabs>

## Usage

Once connected, your AI assistant can search donate.gg documentation to answer questions about the API, integration, and configuration without leaving your editor.

**Example queries:**

* "How do I create a donation config?"
* "What wallets are supported?"
* "How does the charity beneficiary weight work?"
* "Show me how to authenticate with the developer API"
