Patent PreCheck
Patentability pre-check for code — USPTO pillar scores, filing-readiness, and prior-art signals.
README
@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
# Run directly (no install)
npx -y @patentprecheck/mcp score ./src/widget.ts
# Or install globally
npm i -g @patentprecheck/mcp
precheck score ./src/widget.ts
CLI
precheck score ./path/to/file.ts # human-readable report
precheck score ./file.ts --format json # raw JSON
cat invention.md | precheck score - # read from stdin
precheck score ./file.ts --min-score 60 # exit 4 if below threshold (CI gate)
precheck pillars # scoring reference (no network)
precheck review # Interactive Code Review signup URL
precheck mcp # run as an MCP server over stdio
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 Code
claude mcp add patent-precheck -- npx -y @patentprecheck/mcp mcp
// Cursor — .cursor/mcp.json
{ "mcpServers": { "patent-precheck": { "command": "npx", "args": ["-y", "@patentprecheck/mcp", "mcp"] } } }
MCP tools: precheck_score, precheck_pillars, precheck_start_review.
Cursor users can skip the JSON and use the Add to Cursor button at the top.
The server is published to the official MCP Registry
(io.github.Patent-PreCheck/patent-precheck), so MCP-aware clients can discover it directly.
Hosted endpoint (no install)
There's also a hosted, keyless Streamable HTTP MCP server, so remote-capable
clients can connect without npx or a local Node install:
https://patentprecheck.com/mcp
// Cursor — remote server, no command needed
{ "mcpServers": { "patent-precheck": { "url": "https://patentprecheck.com/mcp" } } }
Same three tools and the same scoring engine. The hosted variant takes invention
text inline via code (it never reads files from your machine — use the local
npx server above if you want the path argument).
Develop from source
git clone https://github.com/Patent-PreCheck/patent-precheck-mcp.git
cd patent-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 # stdio server; blocks waiting for an MCP client
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.