Skip to main content

MCP Server for global patent data retrieval and analysis

Project description

Patent MCP Server

๐Ÿš€ Clone. Install. Done. Give your AI agent the ability to read global patents โ€” no API key, no cloud, no external service.

Tests Python License MCP

An MCP (Model Context Protocol) server that gives AI agents access to global patent data โ€” 1.4 billion patent records, Chinese full-text included. Runs locally on your machine. No external API, no subscription.


Why Self-Deployed

  • It's just Python. Install it, your agent uses it. No server to maintain, no credential to share.
  • No API key for 80% of use cases. Patent details and claims come straight from Google Patents public pages.
  • Your data stays local. Nothing leaves your machine except the same HTTP requests a browser would make.
  • BigQuery search is optional. Only turn it on if you need full-text search across 1.4B records.

30-Second Install

git clone https://github.com/deeparchi-ai/patent-mcp-server.git
cd patent-mcp-server
pip install -e .

Quick Start

Pick your agent platform and add this to its MCP config:

Claude Desktop

{
  "mcpServers": {
    "patent-mcp": {
      "command": "python",
      "args": ["-m", "src.server"],
      "cwd": "/path/to/patent-mcp-server"
    }
  }
}

Cursor / Windsurf / Cline

Same config as Claude Desktop above.

Hermes Agent

mcp_servers:
  patent-mcp:
    command: "python"
    args: ["-m", "src.server"]
    workdir: "/path/to/patent-mcp-server"

Any MCP Client (via mcp.json)

mcp-get install deeparchi-ai/patent-mcp-server

Now ask your agent:

"Get patent US-7650331-B1 and summarize the claims."


What's Included

Tool What It Does Needs Setup?
get_patent Full patent details: classifications, citations (X/Y/A/D), inventors, assignees, family No
get_patent_claims US patent claims text โ€” the legal scope of protection No
search_patents Search 1.4B patents by keyword, country, CPC, date range Optional GCP

The first two cover 80% of use cases. Zero cost. Zero setup.


Optional: Enable BigQuery Search

If you need search_patents, add a GCP project:

  1. Create a GCP project with BigQuery enabled
  2. Create a service account, download JSON key
  3. Set env vars:
    export GOOGLE_APPLICATION_CREDENTIALS="/path/to/key.json"
    export GCP_PROJECT_ID="your-project-id"
    
  4. Copy the wrapper template and fill in your paths:
    cp run.sh.example run.sh
    # Edit run.sh โ†’ set your GCP paths
    

BigQuery free tier: 1 TB/month โ€” individual use is essentially free.


Advanced: Team Server (HTTP/SSE)

Need multiple people to share one patent-mcp instance? Start it as an HTTP server:

cp run-http.sh.example run-http.sh
# Edit โ†’ set GCP creds (skip if only using web tools)
PORT=8090 ./run-http.sh

Team members connect with:

mcp_servers:
  patent-mcp:
    url: "http://<server-ip>:8090/sse"

A systemd service template is included for production deployment.


Tools Reference

get_patent

get_patent(publication_number="US-7650331-B1")

Returns: classifications, citations (X/Y/A/D prior art markers), family ID, dates, inventors, assignees. Cites prior art markers so your agent can assess novelty at a glance.

get_patent_claims

get_patent_claims(publication_number="US-7650331-B1")

Returns: full claims text. (US patents only; non-US return empty.)

search_patents

search_patents(query="transformer attention", country="CN", after="2023-01-01", limit=5)

CN results include Chinese titles and abstracts. At least one of country, cpc, or after is required.


How It Works

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  AI Agent    โ”‚โ”€โ”€โ”€โ”€โ–ถโ”‚  patent-mcp-server          โ”‚
โ”‚  (Claude,    โ”‚     โ”‚  (runs on YOUR machine)     โ”‚
โ”‚   Cursor,    โ”‚     โ”‚                             โ”‚
โ”‚   Hermes)    โ”‚     โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
โ”‚              โ”‚     โ”‚  โ”‚ Web      โ”‚ โ”‚ BigQuery  โ”‚ โ”‚
โ”‚              โ”‚     โ”‚  โ”‚ Scraper  โ”‚ โ”‚ Client    โ”‚ โ”‚
โ”‚              โ”‚     โ”‚  โ”‚ (free)   โ”‚ โ”‚ (optional)โ”‚ โ”‚
โ”‚              โ”‚     โ”‚  โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
โ”‚              โ”‚     โ”‚       โ”‚             โ”‚       โ”‚
โ”‚              โ”‚     โ”‚  Google Patents   BigQuery  โ”‚
โ”‚              โ”‚     โ”‚  Public Pages     1.4B rows โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
  • Web scraping for details โ€” fast (~1.5s), free, no credentials
  • BigQuery for search โ€” 1.4B records, CN full-text, optional
  • Smart fallback โ€” get_patent tries web first, auto-falls to BigQuery if you have it

Development

pip install -e ".[dev]"

pytest tests/ -v          # 32 tests, ~1.5s
ruff check src/ tests/    # lint
mypy src/                 # type check

License

MIT โ€” see LICENSE.


Author

DeepArchi OPC โ€” AI agent infrastructure for enterprise architecture.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deeparchi_patent_mcp-1.4.0.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

deeparchi_patent_mcp-1.4.0-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file deeparchi_patent_mcp-1.4.0.tar.gz.

File metadata

  • Download URL: deeparchi_patent_mcp-1.4.0.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for deeparchi_patent_mcp-1.4.0.tar.gz
Algorithm Hash digest
SHA256 c91dea6f6502471d2e105686cbb7e6da65f4b175cd88d3300c59279a57cebdbd
MD5 7f18cb061d2c13c02eff79ba66ca4631
BLAKE2b-256 4e1eed5a3f0158c135d6c4f71e16f45a34ced0f8c6ed5d3d555a6935cd22a24a

See more details on using hashes here.

File details

Details for the file deeparchi_patent_mcp-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: deeparchi_patent_mcp-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for deeparchi_patent_mcp-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 845269a4098cf3cd05550b3c3fd5f7a7fcf69b0ef68122c5ba2884eceff07ec3
MD5 23be4c4fb27298265fc6a77a2de1121f
BLAKE2b-256 689a8e2514b0c33e22c6600ffd97d390c5cddc71840cda19b135576c7794a57a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page