{"name":"io.github.theluckystrike/contract-clause-library-proposal-template-docx","slug":"theluckystrike-contract-clause-library-proposal-template-docx","title":null,"description":"A personal library of reusable contract and proposal clauses, assembled into a real Word .docx.","url":"https://mcp.market/server/theluckystrike-contract-clause-library-proposal-template-docx","grade":"C","score":64,"certified":false,"status":"active","category":"other","tags":[],"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/theluckystrike/mcp-servers","website":"https://mcp.zovo.one/s/clauses","version":"0.22.0","remotes":[{"type":"streamable-http","url":"https://mcp.zovo.one/mcp/clauses","headers":[{"description":"Bearer <Pro license key or anonymous token from GET https://mcp.zovo.one/mcp/token>","isRequired":true,"isSecret":true,"name":"Authorization"}]}],"packages":[{"registryType":"mcpb","identifier":"https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/clauses.mcpb","version":"0.22.0","fileSha256":"7bf25060e28940be217a466529fa7f984a5fde51044b4b25b5bc22fc420b8d54","transport":{"type":"stdio"},"environmentVariables":[{"description":"Optional Pro license key (MCPL1....). Verified offline.","isSecret":true,"name":"MCP_LICENSE_KEY"}]}],"tools":[{"name":"clause_add","description":"Save a reusable contract or proposal clause to the library. Returns the stored clause id, title, category, tags and the variables detected in its body, plus how many clauses of your own the library now holds.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"title":{"type":"string","minLength":1,"description":"Clause heading, for example 'Late Payment'"},"body":{"type":"string","minLength":1,"description":"The clause text. Use {{variable}} placeholders for the facts that change per client, for example {{client}}, {{fee}} or {{late_fee_percent}}; contract_assemble fills them at assembly time. Free tier: 10 clauses of your own on top of the 25 starters"},"category":{"type":"string","description":"Grouping. The known ones, in assembly order, are parties, scope, payment, expenses, ip, confidentiality, data, term, liability, warranty, disputes, general -- reuse one of these; any other name is accepted but sorts last in a category-based assembly"},"tags":{"type":"array","items":{"type":"string"}},"variables":{"type":"array","items":{"type":"string"},"description":"Declared variable names. Anything {{...}} in the body is detected anyway"},"jurisdiction":{"type":"string","description":"Where the clause is meant to apply, for example 'PL' or 'England and Wales'"},"language":{"type":"string","description":"ISO language code, default en"}},"required":["title","body","category"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_delete","description":"Delete one clause by id or exact title and report how many are left. There is no undo, and a deleted starter clause is not re-seeded. Use clause_update to change one you want to keep.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","description":"Clause id or exact title"}},"required":["id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_export","description":"Call this tool to write the whole library to one file and return the path, format and count. It is written in contract order, so it re-imports the same way. markdown is free; json is Pro.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"path":{"type":"string","description":"Destination file path. The clauses are written in assembly order, categories first"},"format":{"type":"string","enum":["json","markdown"],"description":"json (a Pro feature) or markdown (works in the free tier)"},"overwrite":{"type":"boolean","description":"Replace the destination if a file is already there. Without it an existing file is never touched"}},"required":["path","format"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_get","description":"Return one clause in full by id or title: body, category, tags, jurisdiction, variables and the revision count, which stays 0 on free. A partial title matching several is refused with the candidates.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","description":"Clause id, for example late-fees"},"title":{"type":"string","description":"Clause title; a partial title matches too"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_import","description":"Call this tool to load clauses from a .md or .json file, reporting added, replaced, skipped and capped counts. A duplicate title is skipped unless overwrite. json is Pro. Free: 10 of your own.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"path":{"type":"string","description":"Path to a .md or .json file. Markdown form: '## Title', then optional 'category:' / 'tags:' / 'variables:' lines, a blank line, then the body. JSON form: an array of clauses. JSON import is a Pro feature; markdown import works in the free tier, within the free clause cap"},"overwrite":{"type":"boolean","description":"Replace clauses whose title already exists instead of skipping them"}},"required":["path"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_list","description":"List the library as id, title, category, tags and variables, in contract order by category then title, which is the order contract_assemble uses. Narrow with category; use clause_search for words.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"category":{"type":"string"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_search","description":"Ranked search over clause titles, tags, categories and bodies. Title and tag matches outrank body matches. Jurisdiction filtering is free; the tag filter is Pro and is skipped rather than refusing the search.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Words to look for, for example 'late payment interest'"},"category":{"type":"string"},"tags":{"type":"array","items":{"type":"string"},"description":"Pro: every tag listed must be present. On free the search still runs, without this filter"},"jurisdiction":{"type":"string","description":"Exact jurisdiction match. Free"}},"required":["query"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"clause_update","description":"Change the text, category, tags, variables or jurisdiction of a clause. In Pro the previous text is kept as a version; in the free tier the change is applied without history.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","description":"Clause id or exact title"},"title":{"type":"string"},"body":{"type":"string"},"category":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"variables":{"type":"array","items":{"type":"string"}},"jurisdiction":{"type":"string"},"language":{"type":"string"}},"required":["id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"contract_assemble","description":"Call this tool to build a contract from library clauses as .docx or markdown. A variable you omit stays as a bracketed prompt, never invented. clause_ids order is document order. Free: 8 clauses.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"title":{"type":"string","description":"Document title, for example 'Service Agreement - Beta Corp'"},"clause_ids":{"type":"array","items":{"type":"string"},"description":"Clause ids in the order they should appear; this is the document order. Free tier: up to 8 clauses per document"},"categories":{"type":"array","items":{"type":"string"},"description":"Instead of ids: every clause in these categories, ordered by category. Free tier: up to 8 clauses per document"},"values":{"type":"object","additionalProperties":{"type":"string"},"description":"Values for the {{variables}} in the chosen clauses, for example {\"fee\":\"4500\",\"late_fee_percent\":\"2\"}. Any variable you leave out stays in the document as a bracketed prompt such as [late fee percent], never as an invented value"},"client":{"type":"string","description":"Client name; also fills the {{client}} variable"},"out_path":{"type":"string","description":"Where to write the file. Default: the server data directory, under a name built from the client and the title"},"format":{"type":"string","enum":["docx","markdown"],"description":"docx (default) or markdown; the document opens with the not-legal-advice line either way"},"overwrite":{"type":"boolean","description":"Replace out_path if a file is already there. Without it an existing file is never touched"}},"required":["title"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"license_activate","description":"Turn Pro on for this connection with key, an MCPL1.<payload>.<signature> issued at checkout for this server or the bundle. Data under your token stays; a wrong or expired key changes nothing. license_status confirms it.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"key":{"type":"string","description":"License key from checkout, MCPL1.<payload>.<signature>"}},"required":["key"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"license_status","description":"Report this endpoint's licence state for your token as JSON: the product, the tier free or pro, why it is not Pro, and the checkout URL. Call it to explain a free-tier refusal. No arguments, nothing changes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"variables_list","description":"List every {{variable}} the clauses you name use, and which clause uses each, so the facts are gathered before contract_assemble leaves bracketed prompts. Reads only; a title matching several is refused.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"clause_ids":{"type":"array","items":{"type":"string"},"minItems":1,"description":"Clause ids or titles"}},"required":["clause_ids"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":64,"grade":"C","scanned_at":"2026-09-17T16:32:05.712Z","report":{"scannerVersion":"0.1.2","scannedAt":"2026-09-17T16:32:05.621Z","components":{"code":{"score":-1,"max":25,"notes":["package could not be scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 272ms"]},"poisoning":{"score":15,"max":15,"notes":["12 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: github 401"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[],"inputs":{"probes":[{"url":"https://mcp.zovo.one/mcp/clauses","reachable":true,"authRequired":false,"latencyMs":272,"serverInfo":{"name":"mcp-clauses","version":"0.22.0"}}],"packages":[],"repo":{"found":false,"owner":"theluckystrike","repo":"mcp-servers","error":"github 401"}}}},"grade_history":[]}