Clause Mcp

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):

{
  "mcpServers": {
    // your other mcp servers
    "clause-mcp": {
      "url": "https://clausemcp-6a59-salty-fishes-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
    }
  }
}

Connect remote tools directly via Claude's Web UI:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):

{
  "mcpServers": {
    // your other mcp servers
    "clause-mcp": {
      "serverUrl": "https://clausemcp-6a59-salty-fishes-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
    }
  }
}

Add the following configuration block to your Codex configuration file (~/.codex/config.toml):

[mcp_servers.clause-mcp]
url = "https://clausemcp-6a59-salty-fishes-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"

Connect directly using the Server-Sent Events endpoint:

https://clausemcp-6a59-salty-fishes-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp
Available Tools
analyze_clauses

Extracts every distinct clause from contract text, classifies each into a category (termination, indemnity, IP, payment, exclusivity, non-compete, liability, auto-renewal, etc. depending on contract_type), and assigns a risk level (red/yellow/green) with a plain-English reason. Renders an interactive risk-card widget. Always call this first before check_legal_compliance, negotiate_suggestions, or compare_to_market.

check_legal_compliance

Cross-checks flagged clauses against real Indian statutory law (Indian Contract Act 1872 Sections 23/27/28, Consumer Protection Act 2019, POSH Act 2013, IT Act 2000 — chosen based on contract_type) and flags clauses that are likely void or unenforceable, citing the specific section. Renders the risk-card widget enriched with compliance flags. Call analyze_clauses first (or pass its "clauses" output here) so this tool has clauses to check.

analyze_clauses_from_pdf

Accepts a contract as an uploaded PDF (base64 file_content OR a downloadable file_url), extracts its text, and runs the same extraction -> classification -> risk-scoring pipeline as analyze_clauses. Use this instead of analyze_clauses whenever the client supplies a PDF file rather than pasted contract text. Renders the interactive risk-card widget. Fails clearly if the PDF is corrupt, empty, or has no extractable text layer (e.g. a scanned image with no OCR).

check_compliance_from_pdf

Accepts a contract as an uploaded PDF (base64 file_content OR a downloadable file_url), extracts its text, and runs the same extraction -> classification -> risk-scoring -> statutory-compliance pipeline as analyze_clauses + check_legal_compliance combined. Use this instead of check_legal_compliance whenever the client supplies a PDF file rather than pasted contract text. Fails clearly if the PDF is corrupt, empty, or has no extractable text layer (e.g. a scanned image with no OCR).

negotiate_suggestions

Given a flagged clause and which party the user represents (e.g. influencer vs brand, employee vs employer), suggests redline/counter-language aware of typical leverage imbalance for that contract type.

compare_to_market

Benchmarks a clause against typical market norms for that contract type (e.g. "this NDA confidentiality clause is stricter than typical").