Patent MCP Server
Enables Hermes agent to search and retrieve patent information, including full patent details, claims, and keyword searches across global patents.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Patent MCP ServerGet details for patent US-7650331-B1"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Patent MCP Server
π Clone. Install. Done. Give your AI agent the ability to read global patents β no API key, no cloud, no external service.
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-serverNow ask your agent:
"Get patent US-7650331-B1 and summarize the claims."
What's Included
Tool | What It Does | Needs Setup? |
| Full patent details: classifications, citations (X/Y/A/D), inventors, assignees, family | No |
| US patent claims text β the legal scope of protection | No |
| 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:
Create a GCP project with BigQuery enabled
Create a service account, download JSON key
Set env vars:
export GOOGLE_APPLICATION_CREDENTIALS="/path/to/key.json" export GCP_PROJECT_ID="your-project-id"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.shTeam 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_patenttries 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 checkLicense
MIT β see LICENSE.
Author
DeepArchi OPC β AI agent infrastructure for enterprise architecture.
This server cannot be installed
Maintenance
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