jpskill.com
✍️ ライティング コミュニティ 🟡 少し慣れが必要 👤 ライター・マーケ・広報

✍️ Paper検索

paper-lookup

PubMedやarXivなど10種類の学術論文

⏱ プレスリリース 半日 → 15分

📺 まず動画で見る(YouTube)

▶ 【最新版】Claude(クロード)完全解説!20以上の便利機能をこの動画1本で全て解説 ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Search 10 academic paper databases via REST APIs for research papers, preprints, and scholarly articles. Covers PubMed, PMC (full text), bioRxiv, medRxiv, arXiv, OpenAlex, Crossref, Semantic Scholar, CORE, Unpaywall. Use when searching for papers, citations, DOI/PMID lookups, abstracts, full text, open access, preprints, citation graphs, author search, or any scholarly literature query. Triggers on mentions of any supported database or requests like "find papers on X" or "look up this DOI".

🇯🇵 日本人クリエイター向け解説

一言でいうと

PubMedやarXivなど10種類の学術論文

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o paper-lookup.zip https://jpskill.com/download/4197.zip && unzip -o paper-lookup.zip && rm paper-lookup.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/4197.zip -OutFile "$d\paper-lookup.zip"; Expand-Archive "$d\paper-lookup.zip" -DestinationPath $d -Force; ri "$d\paper-lookup.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して paper-lookup.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → paper-lookup フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
11

💬 こう話しかけるだけ — サンプルプロンプト

  • Paper Lookup で、自社の新サービスを紹介する記事を書いて
  • Paper Lookup で、SNS投稿用に短く言い直して
  • Paper Lookup を使って、過去の記事を最新版にアップデート

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

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 topic PubMed Semantic Scholar, OpenAlex
Full text of a biomedical article PMC CORE
Biology preprints bioRxiv Semantic Scholar, OpenAlex
Health/medical preprints medRxiv Semantic Scholar, OpenAlex
Physics, math, or CS preprints arXiv Semantic Scholar, OpenAlex
Papers across all fields OpenAlex Semantic Scholar, Crossref
A specific paper by DOI Crossref Unpaywall, Semantic Scholar
Open access PDF for a paper Unpaywall CORE, PMC
Citation graph (who cites whom) Semantic Scholar OpenAlex
Author's publications Semantic Scholar OpenAlex
Paper recommendations Semantic Scholar --
Full text (any field) CORE PMC (biomedical only)
Journal/publisher metadata Crossref OpenAlex
Funder information Crossref OpenAlex
Convert between PMID/PMCID/DOI PMC (ID Converter) Crossref
Recent preprints by date bioRxiv, medRxiv arXiv

Cross-Database Queries

User is asking about... Databases to query
Everything about a paper (metadata + citations + OA) Crossref + Semantic Scholar + Unpaywall
Comprehensive literature search PubMed + OpenAlex + Semantic Scholar
Find and read a paper PubMed (find) + Unpaywall (OA link) + PMC or CORE (full text)
Preprint and its published version bioRxiv/medRxiv + Crossref
Author overview with citation metrics Semantic 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.

Identifier Format Example Used by
DOI 10.xxxx/xxxxx 10.1038/nature12373 All databases
PMID Integer 34567890 PubMed, PMC, Semantic Scholar
PMCID PMC + digits PMC7029759 PMC, Europe PMC
arXiv ID YYMM.NNNNN 2103.15348 arXiv, Semantic Scholar
OpenAlex ID W + digits W2741809807 OpenAlex
Semantic Scholar ID 40-char hex 649def34f8be... Semantic Scholar
ORCID 0000-XXXX-XXXX-XXXX 0000-0001-6187-6610 OpenAlex, Crossref
ISSN XXXX-XXXX 0028-0836 Crossref, 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

Database Env Variable Required? Registration
NCBI (PubMed, PMC) NCBI_API_KEY No (3 req/s without, 10 with) https://www.ncbi.nlm.nih.gov/account/settings/
CORE CORE_API_KEY Yes for full text https://core.ac.uk/services/api
Semantic Scholar S2_API_KEY No (shared pool without) https://www.semanticscholar.org/product/api#api-key-form
OpenAlex OPENALEX_API_KEY Recommended https://openalex.org/settings/api

Fully open databases (no key needed)

Database Notes
bioRxiv / medRxiv No auth, no documented rate limits
arXiv No auth, max 1 request per 3 seconds
Crossref No auth; add mailto param for polite pool (2x rate limit)
Unpaywall No 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:

Platform HTTP Fetch Tool Fallback
Claude Code WebFetch curl via Bash
Gemini CLI web_fetch curl via shell
Windsurf read_url_content curl via terminal
Cursor No dedicated fetch tool curl via run_terminal_cmd
Codex CLI No dedicated fetch tool curl via shell
Cline No dedicated fetch tool curl 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

Database Reference File What it covers
PubMed references/pubmed.md 37M+ biomedical citations, abstracts, MeSH terms
PMC references/pmc.md 10M+ full-text biomedical articles (JATS XML), ID conversion

Preprint Servers

Database Reference File What it covers
bioRxiv references/biorxiv.md Biology preprints (browse by date/DOI, no keyword search)
medRxiv references/medrxiv.md Health sciences preprints (browse by date/DOI, no keyword search)
arXiv references/arxiv.md Physics, math, CS, biology, economics preprints (keyword search, Atom XML)

Multidisciplinary Indexes

Database Reference File What it covers
OpenAlex references/openalex.md 250M+ works, authors, institutions, topics, citation data
Crossref references/crossref.md 150M+ DOI metadata, journals, funders, references
Semantic Scholar references/semantic-scholar.md 200M+ papers, citation graphs, AI-generated TLDRs, recommendations

Open Access & Full Text

Database Reference File What it covers
CORE references/core.md 37M+ full texts from OA repositories worldwide
Unpaywall references/unpaywall.md OA status and PDF links for any DOI

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。