MCP HubMCP Hub
스킬 목록으로 돌아가기

paper-lookup

K-Dense-AI
업데이트됨 Today
26,534
2,743
26,534
GitHub에서 보기
디자인apidata

정보

논문 조회 스킬은 10개의 학술 데이터베이스를 REST API로 검색하여 논문, 프리프린트, 인용문을 포함한 학술 콘텐츠를 제공합니다. DOI/PMID 조회, 전문 텍스트 검색, 오픈 액세스 확인, 저자 검색 및 PubMed, arXiv, Semantic Scholar와 같은 소스의 문헌 조회를 처리합니다. 사용자가 논문 검색, 인용문 조회 또는 지원 데이터베이스의 학술 문헌을 요청할 때 이 스킬을 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add K-Dense-AI/claude-scientific-skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/K-Dense-AI/claude-scientific-skills
Git 클론대체
git clone https://github.com/K-Dense-AI/claude-scientific-skills.git ~/.claude/skills/paper-lookup

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Paper Lookup

You have access to 10 academic paper databases through their REST APIs. Your job is to figure out which database(s) best serve the user's query, call them, and return the results.

Core Workflow

  1. Understand the query -- What is the user looking for? A specific paper by DOI? Papers on a topic? An author's publications? Open access PDFs? Full text? This determines which database(s) to hit.

  2. Select database(s) -- Use the database selection guide below. Many queries benefit from hitting multiple databases -- for example, searching PubMed for papers and then checking Unpaywall for open access copies.

  3. Read the reference file -- Each database has a reference file in references/ with endpoint details, query formats, and example calls. Read the relevant file(s) before making API calls.

  4. Make the API call(s) -- See the Making API Calls section below for which HTTP fetch tool to use on your platform.

  5. Return results -- Always return:

    • The raw JSON (or parsed XML for arXiv) response from each database
    • A list of databases queried with the specific endpoints used
    • If a query returned no results, say so explicitly rather than omitting it

Database Selection Guide

Match the user's intent to the right database(s).

By Use Case

User is asking about...Primary database(s)Also consider
Papers on a biomedical topicPubMedSemantic Scholar, OpenAlex
Full text of a biomedical articlePMCCORE
Biology preprintsbioRxivSemantic Scholar, OpenAlex
Health/medical preprintsmedRxivSemantic Scholar, OpenAlex
Physics, math, or CS preprintsarXivSemantic Scholar, OpenAlex
Papers across all fieldsOpenAlexSemantic Scholar, Crossref
A specific paper by DOICrossrefUnpaywall, Semantic Scholar
Open access PDF for a paperUnpaywallCORE, PMC
Citation graph (who cites whom)Semantic ScholarOpenAlex
Author's publicationsSemantic ScholarOpenAlex
Paper recommendationsSemantic Scholar--
Full text (any field)COREPMC (biomedical only)
Journal/publisher metadataCrossrefOpenAlex
Funder informationCrossrefOpenAlex
Convert between PMID/PMCID/DOIPMC (ID Converter)Crossref
Recent preprints by datebioRxiv, medRxivarXiv

Cross-Database Queries

User is asking about...Databases to query
Everything about a paper (metadata + citations + OA)Crossref + Semantic Scholar + Unpaywall
Comprehensive literature searchPubMed + OpenAlex + Semantic Scholar
Find and read a paperPubMed (find) + Unpaywall (OA link) + PMC or CORE (full text)
Preprint and its published versionbioRxiv/medRxiv + Crossref
Author overview with citation metricsSemantic Scholar + OpenAlex

When a query spans multiple needs (e.g., "find papers about CRISPR and get me the PDFs"), query the relevant databases in parallel.

Common Identifier Formats

Different databases use different identifier systems. If a query fails, the identifier format may be wrong.

IdentifierFormatExampleUsed by
DOI10.xxxx/xxxxx10.1038/nature12373All databases
PMIDInteger34567890PubMed, PMC, Semantic Scholar
PMCIDPMC + digitsPMC7029759PMC, Europe PMC
arXiv IDYYMM.NNNNN2103.15348arXiv, Semantic Scholar
OpenAlex IDW + digitsW2741809807OpenAlex
Semantic Scholar ID40-char hex649def34f8be...Semantic Scholar
ORCID0000-XXXX-XXXX-XXXX0000-0001-6187-6610OpenAlex, Crossref
ISSNXXXX-XXXX0028-0836Crossref, OpenAlex

Cross-referencing IDs: Semantic Scholar accepts DOI, PMID, PMCID, and arXiv ID via prefixes (e.g., DOI:10.1038/nature12373, PMID:34567890, ARXIV:2103.15348). OpenAlex accepts DOI and PMID via prefixes (doi:10.1038/..., pmid:34567890). Use the PMC ID Converter to translate between PMID, PMCID, and DOI.

API Keys and Access

Most of these databases are fully open. A few benefit from API keys for higher rate limits.

Databases requiring or benefiting from API keys

DatabaseEnv VariableRequired?Registration
NCBI (PubMed, PMC)NCBI_API_KEYNo (3 req/s without, 10 with)https://www.ncbi.nlm.nih.gov/account/settings/
CORECORE_API_KEYYes for full texthttps://core.ac.uk/services/api
Semantic ScholarS2_API_KEYNo (shared pool without)https://www.semanticscholar.org/product/api#api-key-form
OpenAlexOPENALEX_API_KEYRecommendedhttps://openalex.org/settings/api

Fully open databases (no key needed)

DatabaseNotes
bioRxiv / medRxivNo auth, no documented rate limits
arXivNo auth, max 1 request per 3 seconds
CrossrefNo auth; add mailto param for polite pool (2x rate limit)
UnpaywallNo auth; requires email parameter

Loading API keys

  1. Check the environment first -- the key may already be exported (e.g., $NCBI_API_KEY).
  2. Fall back to .env -- check .env in the current working directory.
  3. Proceed without -- most APIs still work at lower rate limits. Tell the user which key is missing and how to get one.

Making API Calls

Use your environment's HTTP fetch tool to call REST endpoints:

PlatformHTTP Fetch ToolFallback
Claude CodeWebFetchcurl via Bash
Gemini CLIweb_fetchcurl via shell
Windsurfread_url_contentcurl via terminal
CursorNo dedicated fetch toolcurl via run_terminal_cmd
Codex CLINo dedicated fetch toolcurl via shell
ClineNo dedicated fetch toolcurl via execute_command

If the fetch tool fails, fall back to curl via whatever shell tool is available.

Special cases

  • arXiv returns Atom XML, not JSON. Parse it or use curl and extract the relevant fields. Consider piping through a simple parser if available.
  • PMC eFetch returns JATS XML for full text. This is expected -- full text articles are in XML format.
  • Crossref and Unpaywall benefit from including a mailto parameter or email for the polite/fast pool.

Request guidelines

  • For NCBI APIs (PubMed, PMC): max 3 req/sec without key, 10 with key. Make requests sequentially.
  • For arXiv: max 1 request every 3 seconds. Be patient.
  • For Crossref: 5 req/sec (public), 10 req/sec (polite pool with mailto).
  • For other APIs with no strict limits, you can query multiple databases in parallel.
  • If you get HTTP 429 (rate limit), wait briefly and retry once.

Error recovery

  1. Check the identifier format -- use the Common Identifier Formats table. A PMID won't work in arXiv, an arXiv ID won't work in PubMed directly.
  2. Try alternative identifiers -- if a DOI fails in one database, try the title or PMID instead.
  3. Try a different database -- if PubMed returns nothing for a CS paper, try Semantic Scholar or OpenAlex.
  4. Report the failure -- tell the user which database failed, the error, and what you tried instead.

Output Format

Structure your response like this:

## Databases Queried
- **PubMed** -- esearch + esummary for "CRISPR gene therapy"
- **Unpaywall** -- DOI lookup for 10.1038/...

## Results

### PubMed
[raw JSON response or formatted results]

### Unpaywall
[raw JSON response]

If results are very large, present the most relevant portion and note that more data is available. But default to showing the full raw JSON -- the user asked for it.

Available Databases

Read the relevant reference file before making any API call.

Biomedical Literature

DatabaseReference FileWhat it covers
PubMedreferences/pubmed.md37M+ biomedical citations, abstracts, MeSH terms
PMCreferences/pmc.md10M+ full-text biomedical articles (JATS XML), ID conversion

Preprint Servers

DatabaseReference FileWhat it covers
bioRxivreferences/biorxiv.mdBiology preprints (browse by date/DOI, no keyword search)
medRxivreferences/medrxiv.mdHealth sciences preprints (browse by date/DOI, no keyword search)
arXivreferences/arxiv.mdPhysics, math, CS, biology, economics preprints (keyword search, Atom XML)

Multidisciplinary Indexes

DatabaseReference FileWhat it covers
OpenAlexreferences/openalex.md250M+ works, authors, institutions, topics, citation data
Crossrefreferences/crossref.md150M+ DOI metadata, journals, funders, references
Semantic Scholarreferences/semantic-scholar.md200M+ papers, citation graphs, AI-generated TLDRs, recommendations

Open Access & Full Text

DatabaseReference FileWhat it covers
COREreferences/core.md37M+ full texts from OA repositories worldwide
Unpaywallreferences/unpaywall.mdOA status and PDF links for any DOI

GitHub 저장소

K-Dense-AI/claude-scientific-skills
경로: skills/paper-lookup
0
agent-skillsai-scientistbioinformaticschemoinformaticsclaudeclaude-skills

연관 스킬

executing-plans

디자인

executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.

스킬 보기

requesting-code-review

디자인

이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.

스킬 보기

connect-mcp-server

디자인

이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.

스킬 보기

web-cli-teleport

디자인

이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기