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

# Getting Started

> Connect your AI application to the DNCScrub MCP Server

## Connection Details

| Setting            | Value                                            |
| ------------------ | ------------------------------------------------ |
| **Server URL**     | `https://mcp.dncscrub.com/mcp`                   |
| **Transport**      | HTTP POST (Streamable HTTP)                      |
| **Authentication** | HTTP Header: `x-dncscrub-api-key: YOUR_LOGIN_ID` |

## Getting Your API Key

Your API key is your DNCScrub **Login ID**:

1. Log in to [dncscrub.com](https://dncscrub.com)
2. Navigate to **Users**
3. Under your API User, select **Get API Key**

## Client Configuration

<Tabs>
  <Tab title="Claude Desktop">
    Add to your `claude_desktop_config.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "dncscrub": {
          "url": "https://mcp.dncscrub.com/mcp",
          "headers": {
            "x-dncscrub-api-key": "YOUR_LOGIN_ID"
          }
        }
      }
    }
    ```

    <Note>
      On macOS, this file is at `~/Library/Application Support/Claude/claude_desktop_config.json`
    </Note>
  </Tab>

  <Tab title="Generic MCP Client">
    Configure your MCP-compatible client with:

    * **Transport Type**: HTTP (Streamable)
    * **Endpoint**: `https://mcp.dncscrub.com/mcp`
    * **Headers**: `x-dncscrub-api-key: YOUR_LOGIN_ID`
  </Tab>
</Tabs>

## Configuration Options

### Campaigns & Projects

Use `campaignId` or `projId` parameters to for Full Scrub tools:

* Track API usage by campaign
* Apply campaign-specific sensitivity settings

### Sensitivity Settings

Litigator scrub sensitivity and lookback periods are configured in the DNCScrub portal, not in MCP requests.

To adjust settings:

1. Log in to [dncscrub.com](https://dncscrub.com)
2. Navigate to your campaign settings
3. Configure sensitivity and lookback period

## Next Steps

<Card title="is_litigator Tool" icon="gavel" href="/mcp/applications/is-litigator">
  Learn how to check phone numbers against the litigator database.
</Card>
