Skip to main content

check-open-access

Check whether a scholarly work is openly accessible and return the best legal free URL, license, and version (via Unpaywall).

설치로 이동

소스 정보

저장소
mlava/scholar-sidekick-cursor-plugin
최근 소스 활동
2026년 9월 1일 23:31
감지된 SKILL.md 언어
영어
스타
0
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
check-open-access
description
Check whether a scholarly work is openly accessible and return the best legal free URL, license, and version (via Unpaywall).
# checkOpenAccess Resolves an identifier to a DOI, then looks up its open-access status via Unpaywall. Returns the best legal full-text location (preferring publisher copies, then repository copies), the licence, and the version (preprint, accepted, or published). ## When to use - A user asks "is there a free copy?" or "where can I read this without a paywall?" - An agent is preparing a reading list and wants to surface freely-readable links. - A library or syllabus tool wants to filter recommendations by accessibility. ## Inputs - `id` (string, required) — one identifier per call: DOI (including shortDOI aliases like `10/aabbe`), PMID, PMCID, arXiv ID, ISBN, or ADS bibcode. Pass it verbatim. Items with no DOI return a "no DOI" result. ## Outputs ```json { "ok": true, "doi": "10.1371/journal.pone.0173664", "result": { "isOa": true, "oaStatus": "gold" | "green" | "hybrid" | "bronze" | "closed", "title": "...", "bestLocation": { "url": "https://...", "hostType": "publisher" | "repository", "license": "cc-by" | null, "version": "publishedVersion" | "acceptedVersion" | "submittedVersion" | null }, "locations": [{ "url": "https://...", "hostType": "...", "license": null, "version": null }] } } ``` - `resolvedFrom` (`{ type, value }`) is present only when the input was not already a DOI. - When no DOI can be found, `result` is `null` and `reason` is one of `no_doi` / `timeout` / `upstream`. ## Underlying surfaces - **REST**: `POST /api/oa-check` with `{ "id": "…" }`. - **Web UI**: [`/tools/open-access-checker`](https://scholar-sidekick.com/tools/open-access-checker). - **MCP tool**: `checkOpenAccess`. ## Example ```bash curl -sS -X POST "https://scholar-sidekick.com/api/oa-check" \ -H "Content-Type: application/json" \ -d '{"id":"10.1371/journal.pone.0173664"}' ``` ## See also - `resolveIdentifier` for full metadata. - `checkRetraction` for retraction-awareness on the same identifier.
GitHub에서 보기