@patentprecheck/mcp — Patent PreCheck CLI + MCP server

Run a patentability pre-check on your code from inside your terminal or your AI
coding agent (Cursor, Claude Code, Codex, Antigravity). It wraps the hosted
Patent PreCheck engine, so no API keys are
required — the scoring engine and prior-art corpus stay server-side.
Informational only — not legal advice and not a substitute for a licensed patent attorney.
What it does
- Scores code or an invention description across the four USPTO statutory pillars
(§101 eligibility, §102 novelty, §103 non-obviousness, §101 utility) plus a
separate §112 filing-readiness signal.
- Reports the band (Not Ready → File Ready), the pillar holding the band back,
top opportunities to strengthen, and how much prior art was consulted.
- Exposes MCP tools so an agent can score the code it just wrote, inline.
Install
npx -y @patentprecheck/mcp score ./src/widget.ts
npm i -g @patentprecheck/mcp
precheck score ./src/widget.ts
CLI
precheck score ./path/to/file.ts
precheck score ./file.ts --format json
cat invention.md | precheck score -
precheck score ./file.ts --min-score 60
precheck pillars
precheck review
precheck mcp
Exit codes: 0 ok · 1 usage · 2 request error · 3 §101 gate not passed ·
4 below --min-score. stdout is clean data; progress/errors go to stderr.
Use in an AI coding agent
See config-examples/. Quickest paths:
claude mcp add patent-precheck -- npx -y @patentprecheck/mcp mcp
{ "mcpServers": { "patent-precheck": { "command": "npx", "args": ["-y", "@patentprecheck/mcp", "mcp"] } } }
MCP tools: precheck_score, precheck_pillars, precheck_start_review.
Develop from source
cd tools/precheck-mcp
npm install
node bin/precheck.js pillars
echo "a novel rate limiter that ..." | node bin/precheck.js score - --format text
node bin/precheck.js mcp