Scholar Monitoring Workflow
Monitor a researcher's recent publication activity: fetch their profile and papers,
optionally analyze output trends, and save a monitoring note.
Workflow
Step 1: Check scholar activity
Call check_scholar with the researcher's name.
- Parameters:
scholar_name (required; use the researcher's full name as commonly
published), max_papers (default 10; increase to 20–30 for career-wide coverage)
- Returns: dict with:
scholar: profile dict with name, hIndex, citationCount, affiliations,
paperCount, url
recent_papers: list of paper dicts (title, abstract, year, venue, citation count)
candidates: list of top-3 candidate matches (inspect if the top result is wrong)
- If
degraded=True, the scholar was not found on Semantic Scholar or the API is
unavailable
Step 2: Analyze paper trends (optional)
If recent_papers is non-empty and the user wants thematic analysis, call analyze_trends.
- Parameters:
topic (use the scholar's name or primary research area as the topic),
papers (the recent_papers list from Step 1)
- Returns: dict with
trend_analysis (natural language narrative of the scholar's
research focus and evolution)
- Skip this step if the user only needs raw paper metadata (no LLM API key required
for Step 1 alone)
Step 3: Save monitoring note
Call save_to_memory with a summary of the scholar's recent activity.
- Parameters:
content (monitoring summary — include scholar name, hIndex,
recent paper titles, and trend analysis if available), kind="note",
user_id (default "default"), scope_type="global",
confidence (0.0–1.0; suggest 0.9 for factual publication data)
- Returns: dict with
created or skipped status
Note on Scholar Lookup
check_scholar searches Semantic Scholar by name. Common issues:
- Name diacritics: Names with accents (e.g., "Müller", "Bengio") may need the
ASCII variant ("Muller", "Yoshua Bengio") if exact-match fails
- New researchers: Very new researchers may have limited or no Semantic Scholar
records — check
paperCount in the returned profile
- Name ambiguity: The
candidates field in the response lists the top 3 matches;
inspect these if the top result appears to be the wrong person (wrong affiliation,
wrong research area)
- Name format: Use "First Last" format; middle names are generally not needed but
can help disambiguate common names
Degraded Mode
analyze_trends (Step 2) requires a configured LLM API key. check_scholar (Step 1)
and save_to_memory (Step 3) do not require LLM.
When analyze_trends returns degraded=True:
- Set
OPENAI_API_KEY or ANTHROPIC_API_KEY and restart the MCP server
- Skip Step 2 and proceed directly to Step 3 with a summary based on raw paper metadata
When check_scholar itself returns degraded=True:
- This indicates the scholar was not found or the Semantic Scholar API is unavailable
- Try an alternate name spelling or abbreviation
- Check
candidates in the response for close matches
Source: jerry609/PaperBot — distributed by TomeVault.
1---2name: scholar-monitoring3description: This skill should be used when the user asks to "monitor a scholar", Use when this capability is needed.4---56# Scholar Monitoring Workflow78Monitor a researcher's recent publication activity: fetch their profile and papers,9optionally analyze output trends, and save a monitoring note.1011## Workflow1213### Step 1: Check scholar activity1415Call `check_scholar` with the researcher's name.1617- Parameters: `scholar_name` (required; use the researcher's full name as commonly18 published), `max_papers` (default 10; increase to 20–30 for career-wide coverage)19- Returns: dict with:20 - `scholar`: profile dict with `name`, `hIndex`, `citationCount`, `affiliations`,21 `paperCount`, `url`22 - `recent_papers`: list of paper dicts (title, abstract, year, venue, citation count)23 - `candidates`: list of top-3 candidate matches (inspect if the top result is wrong)24- If `degraded=True`, the scholar was not found on Semantic Scholar or the API is25 unavailable2627### Step 2: Analyze paper trends (optional)2829If `recent_papers` is non-empty and the user wants thematic analysis, call `analyze_trends`.3031- Parameters: `topic` (use the scholar's name or primary research area as the topic),32 `papers` (the `recent_papers` list from Step 1)33- Returns: dict with `trend_analysis` (natural language narrative of the scholar's34 research focus and evolution)35- Skip this step if the user only needs raw paper metadata (no LLM API key required36 for Step 1 alone)3738### Step 3: Save monitoring note3940Call `save_to_memory` with a summary of the scholar's recent activity.4142- Parameters: `content` (monitoring summary — include scholar name, hIndex,43 recent paper titles, and trend analysis if available), `kind="note"`,44 `user_id` (default `"default"`), `scope_type="global"`,45 `confidence` (0.0–1.0; suggest 0.9 for factual publication data)46- Returns: dict with `created` or `skipped` status4748## Note on Scholar Lookup4950`check_scholar` searches Semantic Scholar by name. Common issues:5152- **Name diacritics:** Names with accents (e.g., "Müller", "Bengio") may need the53 ASCII variant ("Muller", "Yoshua Bengio") if exact-match fails54- **New researchers:** Very new researchers may have limited or no Semantic Scholar55 records — check `paperCount` in the returned profile56- **Name ambiguity:** The `candidates` field in the response lists the top 3 matches;57 inspect these if the top result appears to be the wrong person (wrong affiliation,58 wrong research area)59- **Name format:** Use "First Last" format; middle names are generally not needed but60 can help disambiguate common names6162## Degraded Mode6364`analyze_trends` (Step 2) requires a configured LLM API key. `check_scholar` (Step 1)65and `save_to_memory` (Step 3) do not require LLM.6667When `analyze_trends` returns `degraded=True`:68- Set `OPENAI_API_KEY` or `ANTHROPIC_API_KEY` and restart the MCP server69- Skip Step 2 and proceed directly to Step 3 with a summary based on raw paper metadata7071When `check_scholar` itself returns `degraded=True`:72- This indicates the scholar was not found or the Semantic Scholar API is unavailable73- Try an alternate name spelling or abbreviation74- Check `candidates` in the response for close matches7576---77> Source: [jerry609/PaperBot](https://github.com/jerry609/PaperBot) — distributed by [TomeVault](https://tomevault.io).78<!-- tomevault:4.0:skill_md:2026-06-29 -->