Scholar Feed MCP Server
Enables searching and analyzing over 560,000 CS/AI/ML research papers with LLM-powered novelty scoring and summaries. Supports literature reviews, trend monitoring, benchmark tracking, and deep research sessions through 23 specialized tools.
README
Scholar Feed MCP Server
Search 560,000+ CS/AI/ML research papers with LLM-powered novelty analysis from Claude Code, Cursor, or any MCP client.
Scholar Feed indexes arXiv papers daily and ranks them using a multi-signal scoring system (recency, citation velocity, institutional reputation, code availability). Each paper has an LLM-generated summary and novelty score.
Quick Start
npx scholar-feed-mcp init
This interactive wizard will:
- Optionally ask for an API key (or skip for anonymous access)
- Detect your MCP client (Claude Code, Cursor, or Claude Desktop)
- Write the config and verify the connection
No API key required. Anonymous access gives you 100 calls/day — enough for a typical research session. For higher limits (500/day), get a free key at scholarfeed.org/settings.
Try asking: "Search for recent papers on test-time compute scaling"
What You Can Do
Technology scouting — "What novel research on retrieval-augmented generation was published this month?"
Literature review — "Find papers similar to 2401.04088 and export their BibTeX"
Trend monitoring — "What's trending in cs.CV this week? Summarize the top 3."
Deep dives — "Run a deep research session on 'reasoning in large language models'"
Benchmark tracking — "Show me the MMLU leaderboard and compare GPT-4 vs LLaMA-3"
Author discovery — "Who are the top researchers working on efficient LLM inference?"
Manual Installation
Claude Code
# Without API key (anonymous, 100 calls/day)
claude mcp add scholar-feed -- npx -y scholar-feed-mcp
# With API key (500 calls/day)
claude mcp add scholar-feed -e SF_API_KEY=sf_your_key_here -- npx -y scholar-feed-mcp
Cursor (.cursor/mcp.json)
{
"mcpServers": {
"scholar-feed": {
"command": "npx",
"args": ["-y", "scholar-feed-mcp"]
}
}
}
To add an API key, add "env": { "SF_API_KEY": "sf_your_key_here" } to the config.
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"scholar-feed": {
"command": "npx",
"args": ["-y", "scholar-feed-mcp"]
}
}
}
Project-scoped (.mcp.json)
{
"mcpServers": {
"scholar-feed": {
"command": "npx",
"args": ["-y", "scholar-feed-mcp"],
"env": { "SF_API_KEY": "${SF_API_KEY}" }
}
}
}
Windows note: Use "command": "cmd" and "args": ["/c", "npx", "-y", "scholar-feed-mcp"].
Available Tools (23)
Core Search & Discovery
| Tool | Description | Key Parameters |
|---|---|---|
search_papers |
Full-text keyword search with filters | q, category, novelty_min, days, method_category, task, dataset, contribution_type, task_category, has_results, cursor, limit |
get_paper |
Get full paper details by arXiv ID | arxiv_id, fields |
find_similar |
Find similar papers via embedding + bibliographic coupling | arxiv_id, limit, days |
get_citations |
Citation graph (outgoing refs or incoming citations) | arxiv_id, direction, limit, fields |
whats_trending |
Today's trending papers by composite score | category, limit, fields, exclude_ids |
batch_lookup |
Look up multiple papers at once | arxiv_ids (max 50), fields |
Paper Content
| Tool | Description | Key Parameters |
|---|---|---|
fetch_fulltext |
Extract results/experiments from LaTeX source | arxiv_id |
fetch_repo |
Get GitHub repo README + file tree | arxiv_id |
export_bibtex |
Export BibTeX for papers | arxiv_ids (max 50) |
get_paper_results |
Structured benchmark results from a paper | arxiv_id |
Benchmarks & Methods
| Tool | Description | Key Parameters |
|---|---|---|
search_benchmarks |
Find datasets/benchmarks by name | q, limit |
get_leaderboard |
SOTA leaderboard for a dataset | dataset, metric, limit |
get_benchmark_stats |
Score distribution stats (min, max, median, etc.) | dataset, metric |
get_benchmark_timeline |
Raw score data points over time | dataset, metric |
search_by_method |
Search by technique name (LoRA, YOLO, DPO, etc.) | q, contribution_type, task_category, limit |
compare_methods |
Side-by-side model comparison across benchmarks | models (2-10), dataset, metric |
Authors
| Tool | Description | Key Parameters |
|---|---|---|
discover_authors |
Find researchers by topic or name | q, field, limit |
get_author |
Detailed author profile (h-index, topics, top papers) | author_id |
get_author_papers |
All papers by an author (paginated) | author_id, limit, page |
Research
| Tool | Description | Key Parameters |
|---|---|---|
get_research_landscape |
Aggregated landscape stats for a topic | q, limit |
deep_research |
Multi-round research synthesis (30-120s) | topic, depth |
refine_research |
Follow-up question on a completed research report | report_id, question, date_from, date_to |
Utility
| Tool | Description | Key Parameters |
|---|---|---|
check_connection |
Verify API key, show plan and usage | — |
Novelty Score
Every paper has an llm_novelty_score from 0.0 to 1.0:
| Range | Meaning | Example |
|---|---|---|
| 0.7+ | Paradigm shift or broad SOTA | New architecture that changes the field |
| 0.5-0.7 | Novel method with strong results | New training technique with clear gains |
| 0.3-0.5 | Incremental improvement | Applying known method to new domain |
| <0.3 | Survey, dataset, or minor extension | Literature review, benchmark release |
Use novelty_min: 0.5 in search_papers to filter for genuinely novel work.
Rate Limits
| Endpoint | Limit |
|---|---|
check_connection |
60/min |
search_papers |
30/min |
get_paper |
60/min |
find_similar |
20/min |
get_citations |
30/min |
whats_trending |
30/min |
fetch_fulltext |
10/min |
batch_lookup |
20/min |
fetch_repo |
10/min |
export_bibtex |
20/min |
deep_research |
5/min |
refine_research |
5/min |
search_benchmarks |
30/min |
get_leaderboard |
30/min |
get_benchmark_stats |
30/min |
get_benchmark_timeline |
30/min |
search_by_method |
30/min |
compare_methods |
20/min |
discover_authors |
20/min |
get_author |
60/min |
get_author_papers |
30/min |
get_research_landscape |
10/min |
get_paper_results |
30/min |
Responses include X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset headers.
Example Response
search_papers with q: "attention mechanism" returns:
{
"papers": [
{
"arxiv_id": "2401.04088",
"title": "Attention Is All You Need (But Not All You Get)",
"authors": ["A. Researcher", "B. Scientist"],
"year": 2024,
"categories": ["cs.LG", "cs.AI"],
"primary_category": "cs.LG",
"arxiv_url": "https://arxiv.org/abs/2401.04088",
"has_code": true,
"github_url": "https://github.com/example/repo",
"citation_count": 42,
"rank_score": 0.73,
"llm_summary": "Proposes a sparse attention variant that reduces compute by 60% while matching dense attention accuracy on 5 benchmarks.",
"llm_novelty_score": 0.55
}
],
"total": 1847,
"page": 1,
"limit": 20,
"next_cursor": "eyJzIjogMC43MywgImlkIjogIjI0MDEuMDQwODgifQ=="
}
Pass next_cursor back to get the next page (keyset pagination — more stable than page numbers for large result sets).
Verify Installation
After setup, ask your AI assistant to run check_connection. You should see:
{
"status": "ok",
"plan": "free",
"key_name": "my-key",
"usage_today": 0
}
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
SF_API_KEY |
No | — | Your Scholar Feed API key (starts with sf_). Without it, runs in anonymous mode (100 calls/day). |
SF_API_BASE_URL |
No | Production URL | Override API base URL |
Development
npm install
npm run build # Build to build/
npm run dev # Watch mode
npm run typecheck # Type check without emitting
npm test # Run tests
Contributing
See CONTRIBUTING.md for guidelines.
Troubleshooting
"Authentication failed: your SF_API_KEY is invalid" The key may have been revoked. Generate a new one at scholarfeed.org/settings. Or remove the key to use anonymous mode.
"Rate limit exceeded" or "Anonymous daily limit exceeded" Anonymous mode allows 100 calls/day. Get a free API key at scholarfeed.org/settings for 500 calls/day.
Tool calls time out or fail silently
Ensure Node.js 18+ is installed (node --version). Older versions lack the native fetch API.
Stale npx cache
If you're stuck on an old version after an update: npx --yes scholar-feed-mcp@latest
Windows: "command not found"
Use "command": "cmd" with "args": ["/c", "npx", "-y", "scholar-feed-mcp"] in your MCP config.
License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。