CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
johnisanerd avatar

Google Scholar

johnisanerd/google-scholar-mcp
1 toolsauthHTTPregistry active
Summary

Connects Claude or Cursor to Google Scholar's academic database through Apify's API. Exposes search operations for papers, citation counts, author profiles, and h-index lookups. Returns structured data including titles, abstracts, publication years, citation metrics, and PDF links when available. Requires a free Apify API token. Claude Desktop needs the mcp-remote bridge, while Cursor supports it natively with optional OAuth. Useful when you need to pull citation data for literature reviews, track down prior art, or answer "what's been published on X" questions without leaving your editor. Built on top of Apify's Google Scholar scraper.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Granola, the best AI meeting recorder
Granola, the best AI meeting recorder
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Granola, the best AI meeting recorder
Granola, the best AI meeting recorder
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

1 tools
search_papersSearch Google Scholar for academic papers, books, theses, and citations. Returns organic results with title, authors, snippet, citation count, and PDF links.8 params

Search Google Scholar for academic papers, books, theses, and citations. Returns organic results with title, authors, snippet, citation count, and PDF links.

Parameters* required
as_sdtstring
Search filter. '0,5' = articles excluding patents (default). '0,33' = case law. '4' = patents only.
as_yhiinteger
Latest publication year (inclusive).
as_ylointeger
Earliest publication year (inclusive). E.g. 2020.
hlstring
Language code (default 'en').
numinteger
Results per page (1-20, default 10).
qstring
Search query (paper title, author, topic, keywords).
scisbdinteger
Sort. 1 = include only abstracts; 2 = sort by date (most recent).one of 1 · 2
startinteger
Result offset for pagination (multiples of num).

Google Scholar MCP Server

Search Google Scholar for academic papers, citations, and author profiles.

This is a remote MCP server that lets Claude, Cursor, ChatGPT, or any MCP client query Google Scholar directly as a tool call. Review the documentation here.

Login

You'll need an Apify API token to login. A free Apify account works. Get yours at console.apify.com/account#/integrations.

Install in Claude Desktop

Claude Desktop currently requires a stdio bridge for remote MCP servers. Add this to your ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "google-scholar": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.apify.com/?tools=johnvc/google-scholar-api",
        "--header",
        "Authorization: Bearer <YOUR_APIFY_TOKEN>"
      ]
    }
  }
}

Replace <YOUR_APIFY_TOKEN> with your token. Restart Claude Desktop.

Install in Cursor

Cursor supports remote MCP servers natively. Two ways to connect:

Option A: OAuth (recommended, no token needed)

Add this to your .cursor/mcp.json:

{
  "mcpServers": {
    "google-scholar": {
      "url": "https://mcp.apify.com/?tools=johnvc/google-scholar-api"
    }
  }
}

The first connection opens a browser to sign in to Apify.

Option B: Bearer token

{
  "mcpServers": {
    "google-scholar": {
      "url": "https://mcp.apify.com/?tools=johnvc/google-scholar-api",
      "headers": {
        "Authorization": "Bearer <YOUR_APIFY_TOKEN>"
      }
    }
  }
}

What it does

This MCP server lets Claude search Google Scholar for academic papers, retrieve citation counts, fetch author profiles, and pull abstracts. Useful for literature reviews, citation tracking, prior-art research, and "what's been written about X?" queries. Returns structured JSON with paper title, authors, citation count, abstract, PDF link, and publication year.

Example queries to try in Claude:

  • "Find the 10 most-cited papers on transformer architecture published since 2023"
  • "Get the author profile and h-index for Yoshua Bengio"
  • "Search Google Scholar for recent papers on RAG retrieval performance"

Built by

johnvc on Apify | Sign up for a free Apify account.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Granola, the best AI meeting recorder
Granola, the best AI meeting recorder
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Search & Web Crawling
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 19, 2026
View on GitHub

More from johnisanerd

  • Apple Maps
  • Google Local

Related Search & Web Crawling MCP Servers

View all →
jshph avatar
Enzyme

io.github.jshph/enzyme

Semantic search and AI context for your Obsidian vault. Surface patterns with catalysts.
jxbaoxiaodong avatar
FTIR.fun Spectral Search

io.github.jxbaoxiaodong/ftirfun-mcp

FTIR spectral search and material identification for AI agents via MCP.
kale-eb avatar
Vyra

io.github.kale-eb/vyra

Edit video by talking to your AI — search footage, cut timelines, apply effects, add captions.
karanb192 avatar
Reddit Buddy Mcp

io.github.karanb192/reddit-buddy-mcp

Reddit MCP server - browse posts, search content, analyze users.
zarq-ai avatar
Nerq Trust Engine

io.github.kbanilsson-pixel/nerq-trust-engine

AI agent trust engine — preflight checks, KYA due diligence, search 204K+ agents. Free.
khalid-tounoussi-1 avatar
STIL Lab Assistant

io.github.khalid-tounoussi-1/stil-ets-mcp

STIL lab at ETS Montreal — knowledge base and paper search via ArXiv and Semantic Scholar.