# contractiq-extract-mcp

MCP server for contract clause extraction, obligation detection, risk assessment, deadline tracking, and missing clause identification.

## Tools

| Tool | Description |
|------|-------------|
| `extract_clauses` | Extract and classify all clauses with risk ratings across 25 categories |
| `detect_obligations` | Identify obligations, commitments, and requirements with responsible parties |
| `assess_risk` | Score contract risk across 5 dimensions (financial, termination, IP, operational, legal) |
| `extract_deadlines` | Pull all dates, notice periods, renewal windows, and time-bound commitments |
| `identify_missing_clauses` | Check against standard checklist for contract type, flag missing protections |

## Supported Contract Types

NDA, SaaS, Employment, Vendor, Lease, Partnership, Consulting, Licensing, Distribution, Loan

## Install

```bash
npx contractiq-extract-mcp
```

## Configuration

Add to your MCP client config:

```json
{
  "mcpServers": {
    "contractiq-extract": {
      "command": "npx",
      "args": ["-y", "contractiq-extract-mcp"]
    }
  }
}
```

## Example

```
extract_clauses({
  contract_text: "... full contract text ...",
  contract_type: "saas"
})
```

Returns clause-by-clause analysis with risk levels, issues, and negotiation recommendations.

## Links

- Website: https://contractiq.site
- Full contract analysis platform with PDF upload, comparison, and team collaboration
