kci-mcp-server
This server provides access to the Korea Citation Index (KCI) Open API, translating XML responses to JSON via MCP tools. Here's what you can do:
Search Articles (
kci_search_articles): Find academic papers by title, author, journal name, keyword, abstract, DOI, affiliation, institution, and date range. Returns journal details, authors, abstracts, keywords, and citation counts.Get Article Detail (
kci_get_article_detail): Retrieve comprehensive details for a specific article using its KCI Control Number (e.g.,ART002358582), including author affiliations, full-text URL, DOI, UCI, FWCI, and citation counts.Search References (
kci_search_references): Look up the reference lists of articles matching a given title, author, institution, or publication year — i.e., see what sources those papers cited.Get Journal Citations (
kci_get_journal_citations): Query citation index metrics (impact factor, immediacy index, self-citation rate) for journals by base year and inclusion window (2–5 years).Get Citation Detail (
kci_get_citation_detail): Retrieve detailed citation history for a specific journal by its Control Number, including registration info, publisher details, name change history, and yearly citation index records (3/4/5-year impact factor, SJR, self-citation ratio).
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-mcp-serversearch references for 'AI ethics' in KCI journals"
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-mcp-server
KCI(한국학술지인용색인, Korea Citation Index) Open API를 호출하는 MCP(Model Context Protocol) 서버입니다.
사전 준비: KCI Open API 인증키 발급
KCI 포털(https://www.kci.go.kr) 회원가입
Open API 인증키 신청서 작성 후 한국연구재단(kciadmin@nrf.re.kr)에 공문 발송
인증키 발급 완료 후 아래 환경변수에 설정
Related MCP server: .KCI MCP Server (한국학술지인용색인)
설치 및 빌드
1. 프로젝트 클론
git clone https://github.com/iapke486-arch/mcp-server.git
cd mcp-server
npm install
npm run build실행
직접 실행 (테스트)
KCI_API_KEY=발급받은인증키 node --use-system-ca build/index.jsWindows PowerShell:
$env:KCI_API_KEY = "발급받은인증키"
node --use-system-ca build/index.js
--use-system-ca플래그가 필요한 이유: 사내망/회사 프록시가 TLS 트래픽을 검사(SSL 인터셉션)하는 환경에서는 Node.js의 기본 인증서 목록에 없는 사설 루트 인증서가 응답에 포함되어self-signed certificate in certificate chain오류로 요청이 실패할 수 있습니다.--use-system-ca(Node 22+)는 Windows 인증서 저장소를 함께 신뢰하도록 하여 이 문제를 해결합니다. 이런 프록시 환경이 아니라면 없어도 무방합니다.
Claude Desktop / Claude Code 설정
Claude Desktop
claude_desktop_config.json(보통 %APPDATA%\Claude\claude_desktop_config.json)에 아래와 같이 등록합니다.
{
"mcpServers": {
"kci": {
"type": "stdio",
"command": "node",
"args": ["--use-system-ca", "/path/to/mcp-server/build/index.js"],
"env": {
"KCI_API_KEY": "발급받은인증키"
}
}
}
}경로 예시:
Windows:
C:/Users/YourName/Documents/projects/mcp-server/build/index.jsmacOS/Linux:
/home/username/projects/mcp-server/build/index.js
Claude Code CLI
claude mcp add --env KCI_API_KEY=발급받은인증키 -- node --use-system-ca /path/to/mcp-server/build/index.js
# 모든 프로젝트에서 사용하려면 사용자 전역 스코프로 등록
claude mcp add --scope user --env KCI_API_KEY=발급받은인증키 -- node --use-system-ca /path/to/mcp-server/build/index.js연결 확인
Claude Code: /mcp 목록에서 kci 서버가 ✓ Connected 상태인지 확인하세요.
제공 도구 (Tools)
Tool | KCI API Code | 설명 |
|
| 제목/저자/저널명 등으로 논문 기본 정보 검색 |
|
| 논문 제어번호로 상세 정보 조회 (초록, 키워드, DOI, FWCI, 피인용 횟수 등) |
|
| 논문의 참고문헌 목록 조회 |
|
| 기준년도별 저널 인용지수(영향력 지수 등) 목록 조회 |
|
| 저널 제어번호로 인용지수 상세 이력 조회 |
모든 도구는 KCI Open API가 XML로 응답하는 데이터를 JSON으로 변환하여 반환합니다.
참고
KCI Open API는 XML 응답만 지원하며, 이 서버는 내부적으로 XML을 JSON으로 파싱해 반환합니다.
인증키가 만료되었거나 잘못된 경우, KCI가 반환하는 원본 오류 메시지를 그대로 전달합니다.
KCI 서버는
displayCount파라미터 값과 무관하게 기본 10건을 반환하는 경우가 있습니다(KCI 서버 자체의 동작이며 클라이언트 코드 문제가 아님). 정확한 전체 건수는 응답의result.total값을 참고하세요.
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
- 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/iapke486-arch/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server