kci-openapi-mcp
This server provides MCP tools to search, retrieve, harvest, and collect Korean academic literature and citation data from the Korea Citation Index (KCI) using both the authenticated REST Open API and the unauthenticated OAI-PMH protocol, with options to save data to various file formats.
Check server status (
kci_status) — verify connectivity and REST API key availability.Search articles (
kci_search) — search papers by title (required), with optional filters (author, journal, keyword, abstract, DOI, date range); requiresKCI_API_KEY.Get article details (
kci_detail) — retrieve full details (abstract, keywords, authors, affiliations) for a specific paper via its KCI Control Number (e.g.,ART003047608); requiresKCI_API_KEY.Collect references (
kci_references) — obtain reference lists for papers matching a title search; requiresKCI_API_KEY.Query journal citation data (
kci_journal_citation) — access journal metrics, impact factors, JCR history, and listing information by year or journal ID; requiresKCI_API_KEY.Bulk harvest via OAI-PMH (
kci_harvest) — large-scale harvesting without an API key, filtering by set (articles, conference proceedings, journals), date range, metadata prefix, and optional local keyword filtering.Flexible collection (
kci_collect) — automatically selects REST or OAI-PMH based on API key availability and parameters, then saves results to XLSX, CSV, JSON, or SQLite files.
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., "@kci-openapi-mcpsearch for papers on 'deep learning'"
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.
kci-openapi-mcp
📈 사용량 — 최근 14일 조회 43회(고유 6) · 클론 404회(고유 175) · 릴리스 자산 누적 다운로드 189
2026-08-17 자동 갱신 · 전체 이력은
docs/usage.csv. GitHub 트래픽 통계는 14일 창만 제공하므로 이 저장소가 매일 찍어 누적한다.
한국연구재단(NRF) KCI(Korea Citation Index) 문헌·인용지수 검색·수집 MCP 서버 + CLI. REST Open API(키워드 검색)와 OAI-PMH(무인증 대량 수확)를 함께 다룬다.
기능
논문 검색·상세 — 서지 · 국문/영문 초록 · 키워드 · 저자/소속
참고문헌 수집 — 원형 텍스트 + 피인용 논문의 KCI ID(
arti_id) → 인용 네트워크 구성저널 인용지수 — 연도별 IF · 등재이력
OAI-PMH 대량 수확 — 인증키 없이 세트 + 날짜범위 전수 수집
내보내기 — xlsx · csv · json · sqlite
Related MCP server: KISTI-MCP
두 인터페이스
REST Open API | OAI-PMH | |
엔드포인트 |
|
|
인증 |
| 불필요 |
질의 | 키워드 검색( | 세트 + 날짜범위 수확 |
인용지수·참고문헌 | ✅ | ❌ |
규격: docs/KCI_API_GUIDE.md · docs/KCI_OAI_PMH_GUIDE.md · 설계: docs/ARCHITECTURE.md
인증키 없이 바로 써보기
REST 검색만 인증키가 필요하고, OAI-PMH 수확은 키 없이 동작한다.
uvx --from git+https://github.com/rubatoyd/KCI_openAPI kci identifyuvx --from git+https://github.com/rubatoyd/KCI_openAPI kci harvest --set ARTI --from 2024-01-01 --until 2024-03-31 --contains 학부모 --max 200MCP 로 붙였다면 kci_status → kci_harvest 순으로 바로 쓸 수 있다. 키가 없으면 REST 도구는
오류 대신 OAI 대안을 안내한다.
인증키 발급
REST 도구(kci_search · kci_detail · kci_references · kci_journal_citation)에만 필요하다.
open.kci.go.kr 에서 Open API 이용 신청
발급된 인증키 문자열 1개를 받는다
아래 중 한 곳에 넣는다 — 코드나 커밋에는 넣지 않는다
사용 환경 | 넣는 곳 |
Claude Code |
|
Claude Desktop |
|
| 설치 창의 입력란 |
CLI / 로컬 개발 |
|
AES 암호화·토큰 발급·공인 IP 등록은 불필요하다. 평문 key 쿼리 파라미터 하나로 호출한다.
설치
Claude Desktop
자체완결 .mcpb(권장) — Python·uv 불필요. 릴리스에서
OS에 맞는 파일을 받아 더블클릭(또는 Settings → Extensions → Install) → KCI_API_KEY 입력(선택).
자산 | 특징 |
| 자체완결 — 사전 설치물 없음 |
| 경량. 실행에 |
수동 config — %APPDATA%/Claude/claude_desktop_config.json:
{ "mcpServers": { "kci": {
"command": "uvx",
"args": ["--from", "git+https://github.com/rubatoyd/KCI_openAPI", "kci-mcp"],
"env": { "KCI_API_KEY": "<발급키 또는 비움>", "KCI_OS_TRUST": "1" }
} } }Claude Code
claude mcp add kci --env KCI_API_KEY=$KCI_API_KEY -- uvx --from git+https://github.com/rubatoyd/KCI_openAPI kci-mcp프로젝트 루트의 .mcp.json 도 자동 인식된다.
다른 MCP 클라이언트
표준 stdio MCP 서버이므로 MCP 를 지원하는 에이전트면 그대로 붙는다 — Cursor · Windsurf · Cline ·
Zed · VS Code Copilot(agent mode) · OpenAI Agents SDK · 자체 클라이언트 등. 위 command/args/env
3요소를 각 클라이언트 설정에 옮기면 된다.
from mcp import StdioServerParameters
params = StdioServerParameters(
command="uvx",
args=["--from", "git+https://github.com/rubatoyd/KCI_openAPI", "kci-mcp"],
env={"KCI_API_KEY": "..."}, # 비우면 OAI 무인증 도구만
)전송 방식
kci-mcp # stdio (기본)
kci-mcp --transport streamable-http # http://127.0.0.1:8000/mcp
kci-mcp --transport sse --port 9000 # http://127.0.0.1:9000/sse환경변수: KCI_MCP_TRANSPORT · KCI_MCP_HOST · KCI_MCP_PORT.
MCP 도구
도구 | 하는 일 |
| 연결 점검 — OAI Identify + 인증키 보유 여부 |
| 논문 검색 — |
| Control Number( |
| 제목 검색어에 매칭된 논문들의 참고문헌 원형 |
| 저널 인용지수 — 연도 목록 / |
| OAI-PMH 무인증 대량 수확 — 세트 + 날짜범위, |
| 라우터 — 키 유무·요청 성격으로 REST↔OAI 자동 선택 후 파일 저장 |
알아둘 제한
articleSearch 는 키워드·ISSN·UCI 를 응답에 싣지 않는다. keyword= 로 검색은 되지만 결과에는
없다. 검색 결과의 빈 keywords 는 '키워드 없는 논문'이 아니다 — 필요하면 kci_detail 로 건별 보강한다.
kci_collect 의 REST 경로는 제목축 ∪ 키워드축이다. 각 검색어를 두 축으로 조회해 합집합을 만든다.
결과는 '제목검색 결과'가 아니므로 코퍼스 경계를 기술할 때 명시해야 한다. meta.axes 에 축별 total 이 담긴다.
참고문헌의 arti_id 는 KCI 등재분에만 붙는다. 단행본·보고서·해외문헌은 빈 문자열이다.
인용 네트워크는 이 ID 가 있는 항목으로만 구성할 수 있다(references_linked_count 로 확인).
referenceSearch 는 페이지 파라미터가 없어 1회 100건이 상한이다. 부족한 이유가 둘이고 처방이
정반대이므로 경고 문구를 확인해야 한다.
상황 | 처방 |
|
|
|
|
KCI 가 보고하는 total 은 실제로 받을 수 있는 건수보다 클 수 있다. 그래서 두 상황을 다른
플래그로 구분한다.
플래그 | 뜻 | 대처 |
|
| 상한을 올려 재수집하면 늘어난다 |
| 끝까지 페이징했는데 | 상한을 올려도 늘지 않는다. 회수량을 확정 수치로 쓴다 |
다중 페이지 질의는 호출마다 결과가 미세하게 달라진다. 단일 페이지 질의는 안정적이다.
total 에 못 미치고 상한도 아니면 한 번 더 훑어 합집합을 취한다(meta.sweeps 가 1보다 크면 보정된 것,
수집 전체는 meta.sweeps_total).
보정이 걸린 축은 전체를 재페이징하므로 그만큼 요청이 늘어난다. 대규모 수집에서 부담되면
kci_collect 의 retry_incomplete=0 으로 끈다 — 대신 결손이 남고 total_mismatch 로만 표시된다.
출력 파일명은 정규화된다. name 을 지정하지 않으면 검색어가 그대로 파일명이 되므로,
경로 구분자·..·윈도 금지문자는 제거되고 결과는 항상 out_dir 안에만 저장된다.
한글 파일명은 그대로 보존된다.
정렬 인자는 전송 전에 검증한다. sort_by 는 title/author/pubiYr, sort_dir 은 asc/desc.
허용값 밖이면 오류를 돌려준다.
Claude 앱 안에서 검색해 설치할 수는 없다. 공식 MCP 레지스트리 등재와 Claude Desktop 인앱 커넥터 디렉터리는 별개이고 자동 동기화되지 않는다. 위 설치 방법 중 하나를 쓴다.
도구 설명이 한국어다. 한국어를 다루는 모델이어야 도구 선택이 정확하다.
mcp SDK 는 1.x 로 고정된다(mcp>=1.2.0,<2). 2.0 에서 mcp.server.fastmcp 가 제거되어
상한이 없으면 기동에 실패한다.
CLI
kci identify # OAI 무인증 — 키 없이 즉시
kci harvest --set ARTI --from 2024-01-01 --until 2024-12-31 --contains 학부모 --max 500
kci search --title 경계선지능 --rows 20 # REST(인증키 필요)
kci collect --config config/borderline_slow.yaml로컬 개발은 uv sync. 클라우드 동기화 폴더(OneDrive 등)라면 venv 를 폴더 밖에 두기를 권한다
(UV_PROJECT_ENVIRONMENT).
네트워크
KCI 방화벽은 User-Agent 필터를 건다.
curl기본 UA 는 차단 안내페이지를 받는다. 본 서버는requests로 호출하므로 정상 동작한다.교육망·사내망 SSL 인터셉션 환경에서는
truststore로 OS 신뢰저장소를 사용해 통과한다 (TLS 검증을 끄지 않는다). 비활성은KCI_OS_TRUST=0.HTTP 전송에는 인증이 없다. 기본 바인드는 루프백(
127.0.0.1)이다.--host 0.0.0.0으로 외부에 열면 인증키를 가진 서버가 그대로 노출되므로 신뢰된 망에서만 쓴다.
라이선스
MIT. 본 프로젝트는 한국연구재단의 비공식 클라이언트이며 제휴 관계가 없다. KCI 데이터 이용은 KCI 약관을 따른다.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables Claude to search and analyze Korean academic papers using the Korea Citation Index (KCI) Open API. Supports paper search, detailed metadata retrieval, reference analysis, author and keyword searches, and citation index queries.1
- AlicenseNot gradedqualityAmaintenanceIntegrates with KISTI's ScienceON, NTIS, and DataON APIs to search and retrieve scientific papers, patents, reports, national R\&D projects, and research data.13Creative Commons Attribution Non Commercial 4.0 International
- AlicenseAqualityAmaintenanceEnables searching and collecting academic literature metadata from KISTI ScienceOn via Claude or CLI, supporting various document types and export formats.5MIT
- FlicenseAqualityCmaintenanceEnables querying the Korea Citation Index (KCI) Open API to search reference lists, retrieve journal citation indices, and view citation detail history for Korean academic journals.5
Related MCP Connectors
APICK Korean data APIs: business registry, parcel tracking, OCR, conversion, search
Korean business registry, corporate info, parcel tracking, validation APIs
Scholarly search: OpenAlex, Crossref, arXiv, OpenCitations and PubMed in one endpoint.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/rubatoyd/KCI_openAPI'
If you have feedback or need assistance with the MCP directory API, please join our Discord server