korean-patent-mcp
数据与存储by tech-curator
Search Korean patents by applicant, retrieve detailed records by application number, and analyze forward citations. Filter results by status and paginate to quickly surface relevant filings. Accelerate prior art searches, portfolio tracking, and competitive analysis for the Korean market.
什么是 korean-patent-mcp?
Search Korean patents by applicant, retrieve detailed records by application number, and analyze forward citations. Filter results by status and paginate to quickly surface relevant filings. Accelerate prior art searches, portfolio tracking, and competitive analysis for the Korean market.
README
🇰🇷 Korean Patent MCP
한국어 문서는 아래에 있습니다 / Korean documentation below
MCP (Model Context Protocol) server for KIPRIS (Korean Intellectual Property Rights Information Service) API.
English Documentation
Overview
This MCP server enables AI assistants (Claude Desktop, Cursor, Windsurf, etc.) to search and analyze Korean patents through natural language queries. It connects to the official KIPRIS Plus Open API provided by the Korean Intellectual Property Office (KIPO).
Features
| Tool | Description |
|---|---|
kipris_search_patents | Search patents by applicant name |
kipris_get_patent_detail | Get detailed patent information by application number |
kipris_get_citing_patents | Find patents that cite a specific patent |
Quick Start
# Install via Smithery (recommended)
npx -y @smithery/cli install korean-patent-mcp --client claude
# Or install via uv
uv pip install git+https://github.com/Tech-curator/korean-patent-mcp.git
Requirements
- Python 3.10+
- KIPRIS Plus Open API Key (Get your key here)
Configuration
Set the KIPRIS_API_KEY environment variable:
export KIPRIS_API_KEY="your_api_key_here"
Or add to your MCP client configuration:
{
"mcpServers": {
"korean-patent": {
"command": "uv",
"args": ["run", "korean-patent-mcp"],
"env": {
"KIPRIS_API_KEY": "your_api_key_here"
}
}
}
}
Example Queries
- "Search for Samsung Electronics' registered patents"
- "Get details for patent application number 1020200123456"
- "Find patents that cite application 1020180056789"
한국어 문서
한국 특허정보 검색서비스(KIPRIS) API를 위한 MCP(Model Context Protocol) 서버입니다.
Claude Desktop, Cursor, Windsurf 또는 다른 MCP 클라이언트와 연동하여 자연어로 한국 특허를 검색하고 분석할 수 있습니다.
✨ 기능
Core Tools
| Tool | 설명 |
|---|---|
kipris_search_patents | 출원인명으로 특허 검색 |
kipris_get_patent_detail | 출원번호로 특허 상세 정보 조회 |
kipris_get_citing_patents | 특정 특허를 인용한 후행 특허 조회 |
Extended Tools (향후 구현 예정)
-
kipris_get_cpc_codes- CPC 분류 코드 조회 -
kipris_get_inventors- 발명자 정보 조회 -
kipris_check_rejection- 거절 여부 확인 -
kipris_analyze_rejection_reason- 거절 사유 분석
🚀 설치 방법
방법 1: Smithery를 통한 설치 (권장)
# Smithery CLI 설치 (처음 한 번만)
npm install -g @smithery/cli
# Korean Patent MCP 서버 설치
smithery install korean-patent-mcp --client claude
방법 2: uv를 사용한 로컬 설치
# 저장소 클론
git clone https://github.com/khreat/korean-patent-mcp.git
cd korean-patent-mcp
# uv로 설치 (권장)
uv pip install -e .
# 또는 pip으로 설치
pip install -e .
요구사항
- Python 3.10+
- KIPRIS Plus Open API 키 (발급 사이트)
🔧 설정
API 키 설정
.env 파일을 생성하고 API 키를 설정합니다:
echo "KIPRIS_API_KEY=your_api_key_here" > .env
또는 환경변수로 설정:
export KIPRIS_API_KEY="your_api_key_here"
🔌 클라이언트 연동
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) 또는
%APPDATA%\Claude\claude_desktop_config.json (Windows) 파일을 편집합니다:
{
"mcpServers": {
"korean-patent": {
"command": "uv",
"args": ["run", "korean-patent-mcp"],
"env": {
"KIPRIS_API_KEY": "your_api_key_here"
}
}
}
}
Cursor / Windsurf
MCP 설정에서 다음을 추가합니다:
{
"korean-patent": {
"command": "uv",
"args": ["run", "korean-patent-mcp"],
"env": {
"KIPRIS_API_KEY": "your_api_key_here"
}
}
}
📖 사용 예시
Claude Desktop에서 다음과 같이 질문할 수 있습니다:
특허 검색
삼성전자가 출원한 특허 중 등록된 것들을 보여줘
충북대학교 산학협력단의 최근 특허를 검색해줘
특허 상세 정보
출원번호 1020200123456의 특허 상세 정보를 알려줘
인용 특허 분석
출원번호 1020180056789를 인용한 특허들을 찾아줘
🧪 개발 & 테스트
MCP Inspector로 테스트
npx @modelcontextprotocol/inspector uv run korean-patent-mcp
Smithery Dev 모드
smithery dev
📁 프로젝트 구조
korean-patent-mcp/
├── pyproject.toml # 패키지 설정 (uv/pip 호환)
├── smithery.yaml # Smithery 배포 설정
├── README.md
├── .env.example
└── src/
└── korean_patent_mcp/
├── __init__.py
├── server.py # MCP 서버 & Tool 정의
└── kipris_api.py # KIPRIS API 클라이언트
🔍 API 응답 형식
모든 Tool은 response_format 파라미터를 지원합니다:
markdown(기본값): 사람이 읽기 좋은 형식json: 프로그래밍 처리에 적합한 구조화된 형식
⚠️ 주의사항
- KIPRIS API는 호출 제한이 있을 수 있습니다
- 대량 검색 시 페이지네이션을 활용하세요
- API 키는 절대 공개 저장소에 커밋하지 마세요
📝 라이선스
MIT License
🤝 기여
버그 리포트, 기능 제안, PR 모두 환영합니다!
📞 Contact
- Tech Curator: https://techcurator.kr
- DiME: https://www.dime.kr
- E-mail: jkh25@techcurator.kr / ceo@techcurator.kr
Made with ❤️ for Korean patent research
常见问题
korean-patent-mcp 是什么?
Search Korean patents by applicant, retrieve detailed records by application number, and analyze forward citations. Filter results by status and paginate to quickly surface relevant filings. Accelerate prior art searches, portfolio tracking, and competitive analysis for the Korean market.
相关 Skills
资深数据工程师
by alirezarezvani
聚焦生产级数据工程,覆盖 ETL/ELT、批处理与流式管道、数据建模、Airflow/dbt/Spark 优化和数据质量治理,适合设计数据架构、搭建现代数据栈与排查性能问题。
✎ 复杂数据管道、ETL/ELT 和治理难题交给它,凭 Spark、Airflow、dbt 等现代数据栈经验,能更稳地搭起可扩展的数据基础设施。
技术栈评估
by alirezarezvani
对比框架、数据库和云服务,结合 5 年 TCO、安全风险、生态活力与迁移复杂度做量化评估,适合技术选型、栈升级和替换路线决策。
✎ 帮你系统比较技术栈优劣,不只看功能,还把TCO、安全性和生态健康度一起量化,选型和迁移决策更稳。
迁移架构师
by alirezarezvani
为数据库、API 与基础设施迁移制定分阶段零停机方案,提前校验兼容性与风险,生成回滚策略、验证关卡和时间线,适合复杂系统平滑切换。
✎ 做数据库与存储迁移时,用它统一梳理表结构和数据搬迁流程,架构视角更完整,复杂迁移也更稳。
相关 MCP Server
SQLite 数据库
编辑精选by Anthropic
SQLite 是让 AI 直接查询本地数据库进行数据分析的 MCP 服务器。
✎ 这个服务器解决了 AI 无法直接访问 SQLite 数据库的问题,适合需要快速分析本地数据集的开发者。不过,作为参考实现,它可能缺乏生产级的安全特性,建议在受控环境中使用。
PostgreSQL 数据库
编辑精选by Anthropic
PostgreSQL 是让 Claude 直接查询和管理你的数据库的 MCP 服务器。
✎ 这个服务器解决了开发者需要手动编写 SQL 查询的痛点,特别适合数据分析师或后端开发者快速探索数据库结构。不过,由于是参考实现,生产环境使用前务必评估安全风险,别指望它能处理复杂事务。
Firecrawl 智能爬虫
编辑精选by Firecrawl
Firecrawl 是让 AI 直接抓取网页并提取结构化数据的 MCP 服务器。
✎ 它解决了手动写爬虫的麻烦,让 Claude 能直接访问动态网页内容。最适合需要实时数据的研究者或开发者,比如监控竞品价格或抓取新闻。但要注意,它依赖第三方 API,可能涉及隐私和成本问题。