A powerful MCP server built with NitroStack
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:
Configure custom tools directly via ChatGPT's Web UI:
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
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.
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.
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).
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).
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.
Benchmarks a clause against typical market norms for that contract type (e.g. "this NDA confidentiality clause is stricter than typical").