scopus-researcher

scopus-researcher is a skill for Claude Code, Codex from JOSETRA44/scopus-mcp. It costs 67 tokens per session (2,560 once invoked), scanned A, original, MIT.

An academic research assistant connected to Elsevier Scopus, a database of scholarly papers, books, and conference proceedings.

In plain words
What is it for?
Use it to find papers by topic or date, retrieve abstracts, build author profiles, count citations, study citation trends, and analyze research output.
Why use it?
It helps locate research and examine authors, citations, and trends without manually searching Scopus and combining the results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to find papers by topic or date, retrieve abstracts, build author profiles, count citations, study citation trends, and analyze research output.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/josetra44/scopus-mcp/scopus-researcher
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add JOSETRA44/scopus-mcp --skill scopus-researcher
Clone the repo
git clone --depth 1 https://github.com/JOSETRA44/scopus-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scopus-researcher

README.md
[![agentmods](https://agentmods.dev/badge/skills/josetra44/scopus-mcp/scopus-researcher/github.svg)](https://agentmods.dev/skills/josetra44/scopus-mcp/scopus-researcher)
Your own site
<a href="https://agentmods.dev/skills/josetra44/scopus-mcp/scopus-researcher"><img src="https://agentmods.dev/badge/skills/josetra44/scopus-mcp/scopus-researcher/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for scopus-researcher

Your own site · 80×15
<a href="https://agentmods.dev/skills/josetra44/scopus-mcp/scopus-researcher"><img src="https://agentmods.dev/badge/skills/josetra44/scopus-mcp/scopus-researcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,560 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.02560
Opus 5 $0.00034 $0.01280
Sonnet 5 $0.00013 $0.00512
Haiku 4.5 $0.00007 $0.00256

Measured 11d ago against content hash bf0e6db6f6f5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

scopus-researcher scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

scopus-researcher/SKILL.md · 384 lines

How it starts

The opening of the file, as written. The whole thing — 384 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Scopus Researcher

Expert academic research assistant powered by the Elsevier Scopus MCP. Searches over 100 million scholarly records across journals, conferences, and books.

When to Use This Skill

  • "Find papers about X published after 2020"
  • "Who are the top researchers in Y field?"
  • "How many times has this paper been cited?"
  • "What's the citation trend for paper Z over the last 10 years?"
  • "Find all papers by author X at institution Y"
  • "Search for reviews on topic Z in high-impact journals"
  • "Analyze the research output of MIT on machine learning"

MCP Setup

Ensure the Scopus MCP is running. The scopus-dev entry in .antigravity.json points to the local install:

{
  "mcpServers": {
    "scopus": {
      "command": "uvx",
      "args": ["scopus-mcp"],
      "env": { "SCOPUS_API_KEY": "your_key_here" }
    }
  }
}

Read the scopus://search-syntax resource for the full Boolean query reference before constructing complex queries.


Goal: Find papers on a topic, filter by year/type, retrieve full details.

Step 1 — Broad search
  scopus_search(query="TITLE-ABS-KEY(\"machine learning\" AND cancer)", count=10)

Step 2 — Retrieve full abstract for top result
  scopus_get_abstract(identifier_type="scopus_id", identifier="85123456789")

Step 3 — Check citation count
  scopus_get_citation_count(scopus_id="85123456789")

Step 4 — Paginate for more results
  scopus_search(query="...", count=10, start=10)

Workflow: Author Profile

Goal: Find a researcher and analyze their impact.

Step 1 — Find author by name
  scopus_search_authors(query="AUTHLASTNAME(Smith) AND AUTHFIRST(J) AND AFFIL(Harvard)")

Step 2 — Get full profile with h-index
  scopus_get_author(author_id="7401234567")

Step 3 — See their papers
  scopus_search(query="AU-ID(7401234567)", count=10)

Workflow: Citation Impact Analysis

Goal: Understand how a paper's citations grew over time.

Step 1 — Find the paper
  scopus_search(query="TITLE(\"Attention Is All You Need\")", count=1)

Step 2 — Year-by-year citation trend
  scopus_get_citations_overview(
    scopus_id="85029815652",
    start_year=2017,
    end_year=2025
  )

Read the full file on GitHub · 384 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 384 lines · 67 tokens per session scan A bf0e6db6f6f5

Subscribe to this mod's changes

scopus-researcher is a skill published in the GitHub repository JOSETRA44/scopus-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 67 tokens to every session and 2,560 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

scientific-writing

Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process with (1) section outlines with key points using research-lookup then (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting…

LeonChaoX/qinyan-academic-skills · 87 tokens

venue-templates

Access comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing…

LeonChaoX/qinyan-academic-skills · 97 tokens

rowan

Cloud-based quantum chemistry platform with Python API. Preferred for computational chemistry workflows including pKa prediction, geometry optimization, conformer searching, molecular property calculations, protein-ligand docking (AutoDock Vina), and AI protein cofolding (Chai-1, Boltz-1/2). Use when tasks involve…

LeonChaoX/qinyan-academic-skills · 115 tokens

cbioportal-database

Query cBioPortal for cancer genomics data including somatic mutations, copy number alterations, gene expression, and survival data across hundreds of cancer studies. Essential for cancer target validation, oncogene/tumor suppressor analysis, and patient-level genomic profiling.

LeonChaoX/qinyan-academic-skills · 57 tokens

monarch-database

Query the Monarch Initiative knowledge graph for disease-gene-phenotype associations across species. Integrates OMIM, ORPHANET, HPO, ClinVar, and model organism databases. Use for rare disease gene discovery, phenotype-to-gene mapping, cross-species disease modeling, and HPO term lookup.

LeonChaoX/qinyan-academic-skills · 68 tokens

bindingdb-database

Query BindingDB for measured drug-target binding affinities (Ki, Kd, IC50, EC50). Search by target (UniProt ID), compound (SMILES/name), or pathogen. Essential for drug discovery, lead optimization, polypharmacology analysis, and structure-activity relationship (SAR) studies.

LeonChaoX/qinyan-academic-skills · 68 tokens