> ## 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.

# MCP Server for Developers

> Connect AI tools to Contact Center Compliance documentation for enhanced development assistance

## Overview

Speed up your development efforts by using our MCP Server for Developers.
Instead of the LLM hallucinating how our APIs work, it can instantly look up the correct way to integrate.

<Note>
  We maintain two MCP Servers: one that executes tools for agentic AI, and
  another that provides search across our documentation for developing with our
  APIs. This server is the latter.
</Note>

## Quickstart

<MCP name="ccc-docs" description="MCP server for searching CCC / DNCScrub API documentation." url="https://docs.dnc.com/mcp" />

### Usage

1. Add the **ccc-docs** MCP server to your MCP-compatible client.
2. Point the client to the URL:

```json theme={null}
{
  "mcpServers": {
    "ccc-docs": {
      "url": "https://docs.dnc.com/mcp"
    }
  }
}
```

## How it helps you

**Without MCP:**

```
You: "How do I check for litigators using the API?"
AI: generates generic code that might not work with DNCScrub_
```

**With MCP:**

```
You: "How do I check for litigators using the API?"
AI: _searches CCC docs automatically_
AI: _generates code using actual DNCScrub API parameters_
```

When you connect MCP to your AI tools, the AI becomes a Contact Center Compliance expert that can:

* **Generate accurate code** using our latest API endpoints and parameters
* **Answer specific questions** about DNCScrub APIs and authentication
* **Suggest best practices** for TCPA compliance, scrubbing, and litigator checks
* **Find the right documentation** when you're stuck on implementation

<Note>
  This MCP server provides documentation **search only**. It doesn't execute API
  calls directly—that keeps your development secure. For real-time compliance
  operations, see [MCP for Applications](/mcp/applications/overview).
</Note>

## Claude

To use the CCC MCP server with Claude:

<Steps>
  <Step title="Add the CCC MCP server to Claude">
    1. Navigate to the [Connectors](https://claude.ai/settings/connectors) page in Claude settings
    2. Select **Add custom connector**
    3. Add the following:
       * Name: `Contact Center Compliance`
       * URL: `https://docs.dnc.com/mcp`
    4. Select **Add**
  </Step>

  <Step title="Access CCC docs in your chat">
    1. When using Claude, select the attachments button (the plus icon)
    2. Select the Contact Center Compliance connector
    3. Query Claude with CCC documentation as context
  </Step>
</Steps>

## Cursor

To connect the CCC MCP server to Cursor, you can either use the automatic connection or configure it manually:

<Tabs>
  <Tab title="Automatic Connection">
    <Steps>
      <Step title="Use the Connect to Cursor option">
        1. On any CCC documentation page, select the **Copy page** dropdown next to the document header
        2. Select **Connect to Cursor**
        3. Cursor will automatically open with the CCC MCP server configured
      </Step>

      <Step title="Test the connection">
        In Cursor's chat, ask "What tools do you have available?" to verify that Cursor has access to CCC documentation search.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Manual Configuration">
    <Steps>
      <Step title="Open MCP settings">
        1. Use <kbd>Command</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> on Windows) to open the command palette
        2. Search for "Open MCP settings"
        3. Select **Open MCP settings** to open the `mcp.json` file
      </Step>

      <Step title="Configure the CCC server">
        In `mcp.json`, add the CCC configuration:

        ```json theme={null}
        {
          "mcpServers": {
            "contact-center-compliance": {
              "url": "https://docs.dnc.com/mcp"
            }
          }
        }
        ```
      </Step>

      <Step title="Test the connection">
        In Cursor's chat, ask "Do you have access to an MCP server?" to verify that Cursor has access to CCC documentation search.
      </Step>
    </Steps>
  </Tab>
</Tabs>

## VS Code

The CCC MCP server can also be configured with VS Code extensions that support MCP:

1. Install an MCP-compatible extension (such as [Continue](https://continue.dev/) or [Cline](https://github.com/cline/cline))
2. Add the CCC server URL: `https://docs.dnc.com/mcp`
3. Test the connection by querying CCC documentation

<Note>
  VS Code MCP support varies by extension. Check your specific extension's
  documentation for setup instructions.
</Note>

## Testing your MCP connection

Once configured, test your MCP connection by asking your AI tool:

````

"What MCP tools do you have available?"

```

You should see the CCC documentation search tool listed. Then try:

```

"Search for information about the Scrub API in the CCC documentation"

```

The AI should be able to search and return relevant Contact Center Compliance documentation.

## Troubleshooting

### Connection issues

**Problem:** MCP server not connecting

**Solution:**

- Verify the URL is exactly: `https://docs.dnc.com/mcp`
- Check your internet connection
- Restart your AI tool after configuration

**Problem:** Search tool not available

**Solution:**

- Confirm the MCP server was added correctly
- Try removing and re-adding the server configuration
- Check the AI tool's MCP support documentation

### Search issues

**Problem:** Search returns no results

**Solution:**

- Try different search terms
- Use more general terms (e.g., "scrub" instead of "scrub multiple phone numbers API")
- Verify the MCP connection is working

## Additional resources

- [Model Context Protocol documentation](https://modelcontextprotocol.io/docs/tutorials/use-remote-mcp-server#connecting-to-a-remote-mcp-server)
- [Mintlify MCP documentation](https://mintlify.com/docs/ai/model-context-protocol)

## Support

If you need assistance with the MCP server or documentation:

- Create a support ticket at [dncscrub.com/help/new](https://dncscrub.com/help/new)
- Email: support@dnc.com
```
````
