Metadata-Version: 2.4
Name: delpha-mcp
Version: 0.1.0
Summary: Delpha Data Quality MCP Server: Data quality assessment for MCP-compatible tools.
Author-email: Victor Goubet <support.api@delpha.io>
Maintainer-email: Delpha <support.api@delpha.io>
License: MIT License
        
        Copyright (c) 2024 Delpha, Victor Goubet
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE. 
Project-URL: Homepage, https://github.com/Delpha-Assistant/DelphaMCP
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastmcp>=0.1.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: authlib>=1.2.0
Provides-Extra: dev
Requires-Dist: ruff>=0.4.0; extra == "dev"
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: build; extra == "dev"
Dynamic: license-file

# Delpha Data Quality MCP Server

Email data quality assessment for MCP-compatible tools like Cursor. Validate emails, get quality scores, and receive suggestions.

## Quick Setup

### 1. Install the Package
```bash
pip install delpha-mcp
```

### 2. Configure Cursor (or other MCP tool)

Go to Cursor Settings → MCP and add this configuration:

```json
{
  "Delpha": {
    "command": "python3",
    "args": ["-m", "delpha_mcp"],
    "env": {
      "DELPHA_CLIENT_ID": "your_client_id_here",
      "DELPHA_CLIENT_SECRET": "your_client_secret_here"
    }
  }
}
```

**Replace:**
- `your_client_id_here` and `your_client_secret_here` with your Delpha credentials

### 3. Restart Cursor

That's it! 🚀 The Delpha tools are now available in your MCP environment.

## Available Tools

- **`submitEmailAssessment`**: Submit an email for quality assessment
- **`getEmailAssessmentStatus`**: Get assessment results by job ID




## Get Credentials

Contact Delpha to get your OAuth 2.0 client credentials for API access.
