K
Keywert 문서 조회documentId와 token으로 상세설명·청구범위·도면 조회

특허 문서 조회

Keywert 상세보기 URL의 documentId와 token을 입력해 주세요.

입력값은 조회 요청에만 사용하며 URL·브라우저 저장소·응답 JSON에 남기지 않습니다.

조회 결과

특허 문서를 선택해 주세요.
{ }

조회된 데이터가 없습니다.

상단에 documentId와 Keywert token을 입력하면 상세설명, 청구범위, 도면을 확인할 수 있습니다.

호출 방법

웹 UI와 JSON API 또는 MCP로 Keywert 특허 상세 문서를 읽기 전용으로 조회할 수 있습니다.

01웹 화면 조회

Keywert 상세보기 URL에서 /public/detail/ 뒤 값을 documentId에, query string의 값을 Keywert token에 입력합니다.

https://www.keywert.com/public/detail/cn207332944u?token=KEYWERT_DETAIL_TOKEN
documentIdcn207332944utokenKeywert 상세보기 URL의 token 값

두 값은 조회 요청에만 사용하며 화면 URL·브라우저 저장소·응답 JSON에는 남기지 않습니다. 도면의 상대 imgFile은 https://resource.keywert.com 기준 URL로 표시합니다.

02JSON API 호출

같은 데이터를 프로그램에서 가져오려면 아래 endpoint에 JSON body를 POST합니다.

POST https://mcp-keywert.drmark.co.kr/api/live/detail
content-type: application/json

{
  "documentId": "cn207332944u",
  "token": "KEYWERT_DETAIL_TOKEN",
  "section": "description"
}
description상세설명claims청구범위drawings도면과 정규화된 imageUrl

상세설명과 청구범위는 잘라내지 않고 전체 본문을 반환합니다. 이 live 조회 API는 Keywert token만 사용합니다. MCP_API_TOKEN은 MCP와 저장 JSON API 보호에만 적용됩니다.

03MCP 사용

Endpoint
https://mcp-keywert.drmark.co.kr/mcp
Tool
keywert_get_live_patent_detail
Arguments
{ "documentId": "cn207332944u", "token": "KEYWERT_DETAIL_TOKEN", "section": "description" }

LLM은 위 MCP tool을 호출해 상세설명 전체·청구범위 전체·도면을 section별로 조회합니다. MCP client 또는 LLM trace는 tool input을 기록할 수 있으므로 실제 Keywert token은 접근이 통제된 환경에서만 사용하세요.

Claude Code

claude mcp add --transport http keywert https://mcp-keywert.drmark.co.kr/mcp

Codex

codex mcp add keywert --url https://mcp-keywert.drmark.co.kr/mcp

배포 환경에 MCP_API_TOKEN이 설정되어 있다면 MCP client의 bearer-token 설정도 함께 추가해야 합니다.