Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ”¬ Research
  3. Semanticscholar
S
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:13:07 AM

Semanticscholar

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Search 200M+ papers, authors, citations, and recommendations via Semantic Scholar

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "semanticscholar": {
      "command": "npx",
      "args": [
        "-y",
        "semanticscholar"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ”¬ More in Research

Documentation Overview

Semantic Scholar MCP Server

An MCP (Model Context Protocol) server for the Semantic Scholar Academic Graph API β€” 200M+ papers with citation networks, author profiles, and full-text snippet search.

Built with the MCP TypeScript SDK and Zod.

Tools (16 total)

Papers (9 tools)

ToolDescription
paper_searchSearch papers by keyword with filtering (year, venue, field, open access, citations, type)
paper_search_bulkBulk search with cursor pagination for large result sets (up to 10M)
paper_matchFind the single best match for a known paper title
paper_autocompleteAutocomplete partial paper titles (up to 10 suggestions)
paper_getGet full details for a paper by ID (S2 ID, DOI, ArXiv, PMID, etc.)
paper_batchRetrieve up to 500 papers in a single request
paper_citationsGet papers that cite a given paper (forward citations)
paper_referencesGet a paper's reference list (bibliography)
paper_authorsGet author details for a specific paper

Authors (4 tools)

ToolDescription
author_getGet full author profile (h-index, affiliations, stats)
author_batchRetrieve up to 1000 author profiles in one request
author_searchSearch for authors by name
author_papersGet all papers by a specific author

Recommendations (2 tools)

ToolDescription
recommendations_for_paperGet ML-powered paper recommendations for a given paper
recommendations_from_listsGet recommendations from positive/negative example papers

Snippets (1 tool)

ToolDescription
snippet_searchSearch within paper bodies for specific text passages

Setup

1. Get an API key (optional but recommended)

Get a free key at semanticscholar.org/product/api. Without a key, requests are heavily rate-limited.

2. Install and build

bash
cd semanticscholar-mcp-server
npm install
npm run build

3. Add to Claude Desktop

Add this to your claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "semantic-scholar": {
      "command": "node",
      "args": ["/path/to/semanticscholar-mcp-server/dist/index.js"],
      "env": {
        "SEMANTICSCHOLAR_API_KEY": "your-api-key"
      }
    }
  }
}

Or if using Claude Code CLI:

Terminal
claude mcp add semantic-scholar \
  node \
  /path/to/semanticscholar-mcp-server/dist/index.js \
  -e SEMANTICSCHOLAR_API_KEY=your-api-key

Features

  • Multiple ID formats: Accepts S2 Paper IDs, DOIs, ArXiv IDs, PMIDs, PMCIDs, CorpusIds
  • Markdown or JSON output: Every tool supports response_format: "json" for structured data
  • Custom field selection: Override default fields with the fields parameter
  • Built-in rate limiting: Token bucket limiter prevents API throttling
  • Batch operations: Retrieve up to 500 papers or 1000 authors in a single call

Usage examples

  • "Search Semantic Scholar for papers on transformer architectures from 2023"
  • "Get recommendations for papers similar to this one"
  • "Find the citation network for DOI 10.1038/nature14539"
  • "Search for text snippets mentioning 'chain of thought prompting'"
  • "Look up author profile for researcher 1741101"

License

MIT

Related MCP Servers

View all in Research View all alternatives
  • Adamamer20 Paper Search Mcp Openai logoAdamamer20 Paper Search Mcp Openai

    Search and download academic papers from arXiv, PubMed, bioRxiv, medRxiv, Google Scholar, Semantic…

    πŸ”¬ Research0 views
    Compare vs Adamamer20 Paper Search Mcp Openai β†’
  • S
    Scopus

    Search Scopus abstracts, authors, and export citations via Elsevier API

    πŸ”¬ Research0 views
    Compare vs Scopus β†’
  • C
    CiteMe

    Search papers, format citations in 60 styles, and verify bibliographies against scholarly sources.

    πŸ”¬ Research0 views
    Compare vs CiteMe β†’
  • T
    Tomesphere

    Search 8.5M scientific papers with LLM TLDRs, citations, linked entities, figures, and full text.

    πŸ”¬ Research0 views
    Compare vs Tomesphere β†’

Frequently Asked Questions about Semanticscholar

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "semanticscholar": { "command": "npx", "args": ["-y", "semanticscholar"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSemanticscholar AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/semanticscholar?style=directory)](https://allmcps.com/mcp/semanticscholar)
HTML Embed
<a href="https://allmcps.com/mcp/semanticscholar"><img src="https://allmcps.com/api/badge/semanticscholar?style=directory" alt="Semanticscholar on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ”¬Research
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ”¬ Research β†’Best MCP servers for Research β†’Alternatives to Semanticscholar β†’Install in Claude DesktopInstall in CursorInstall in VS Code