Skip to main content
Glama
deeparchi-ai

Patent MCP Server

by deeparchi-ai

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.


Related MCP server: Forage MCP Server

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.


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.

A
license - permissive license
-
quality - not tested
A
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/deeparchi-ai/patent-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server