Academic Paper Search MCP Server

Academic Paper Search MCP Server

Enables real-time search and retrieval of academic paper information from multiple sources, providing access to paper metadata, abstracts, and full-text content when available, with structured data responses for integration with AI models that support tool/function calling.

afrise

Search
Research & Data
Visit Server

Tools

search_papers

Search for papers across multiple sources. args: query: the search query limit: the maximum number of results to return (default 10)

fetch_paper_details

Get detailed information about a specific paper. Args: paper_id: Paper identifier (DOI for Crossref, paper ID for Semantic Scholar) source: Source database ("semantic_scholar" or "crossref")

search_by_topic

Search for papers by topic with optional date range. Note: Query length is limited to 300 characters. Longer queries will be automatically truncated. Args: topic (str): Search query (max 300 chars) year_start (int, optional): Start year for date range year_end (int, optional): End year for date range limit (int, optional): Maximum number of results to return (default 10) Returns: str: Formatted search results or error message

README

Academic Paper Search MCP Server

smithery badge

A Model Context Protocol (MCP) server that enables searching and retrieving academic paper information from multiple sources.

The server provides LLMs with:

  • Real-time academic paper search functionality
  • Access to paper metadata and abstracts
  • Ability to retrieve full-text content when available
  • Structured data responses following the MCP specification

While primarily designed for integration with Anthropic's Claude Desktop client, the MCP specification allows for potential compatibility with other AI models and clients that support tool/function calling capabilities (e.g. OpenAI's API).

Note: This software is under active development. Features and functionality are subject to change.

<a href="https://glama.ai/mcp/servers/kzsu1zzz9j"><img width="380" height="200" src="https://glama.ai/mcp/servers/kzsu1zzz9j/badge" alt="Academic Paper Search Server MCP server" /></a>

Features

This server exposes the following tools:

  • search_papers: Search for academic papers across multiple sources

    • Parameters:
      • query (str): Search query text
      • limit (int, optional): Maximum number of results to return (default: 10)
    • Returns: Formatted string containing paper details
  • fetch_paper_details: Retrieve detailed information for a specific paper

    • Parameters:
      • paper_id (str): Paper identifier (DOI or Semantic Scholar ID)
      • source (str, optional): Data source ("crossref" or "semantic_scholar", default: "crossref")
    • Returns: Formatted string with comprehensive paper metadata including:
      • Title, authors, year, DOI
      • Venue, open access status, PDF URL (Semantic Scholar only)
      • Abstract and TL;DR summary (when available)
  • search_by_topic: Search for papers by topic with optional date range filter

    • Parameters:
      • topic (str): Search query text (limited to 300 characters)
      • year_start (int, optional): Start year for date range
      • year_end (int, optional): End year for date range
      • limit (int, optional): Maximum number of results to return (default: 10)
    • Returns: Formatted string containing search results including:
      • Paper titles, authors, and years
      • Abstracts and TL;DR summaries when available
      • Venue and open access information

Setup

Installing via Smithery

To install Academic Paper Search Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @afrise/academic-search-mcp-server --client claude

note this method is largely untested, as their server seems to be having trouble. you can follow the standalone instructions until smithery gets fixed.

Installing via uv (manual install):

  1. Install dependencies:
uv add "mcp[cli]" httpx
  1. Set up required API keys in your environment or .env file:
#  These are not actually implemented
SEMANTIC_SCHOLAR_API_KEY=your_key_here 
CROSSREF_API_KEY=your_key_here  # Optional but recommended
  1. Run the server:
uv run server.py

Usage with Claude Desktop

  1. Add the server to your Claude Desktop configuration (claude_desktop_config.json):
{
  "mcpServers": {
    "academic-search": {
      "command": "uv",
      "args": ["run ", "/path/to/server/server.py"],
      "env": {
        "SEMANTIC_SCHOLAR_API_KEY": "your_key_here",
        "CROSSREF_API_KEY": "your_key_here"
      }
    }
  }
}
  1. Restart Claude Desktop

Development

This server is built using:

  • Python MCP SDK
  • FastMCP for simplified server implementation
  • httpx for API requests

API Sources

  • Semantic Scholar API
  • Crossref API

License

This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). This license ensures that:

  • You can freely use, modify, and distribute this software
  • Any modifications must be open-sourced under the same license
  • Anyone providing network services using this software must make the source code available
  • Commercial use is allowed, but the software and any derivatives must remain free and open source

See the LICENSE file for the full license text.

Contributing

Contributions are welcome! Here's how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please note:

  • Follow the existing code style and conventions
  • Add tests for any new functionality
  • Update documentation as needed
  • Ensure your changes respect the AGPL-3.0 license terms

By contributing to this project, you agree that your contributions will be licensed under the AGPL-3.0 license.

Recommended Servers

Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
serper-search-scrape-mcp-server

serper-search-scrape-mcp-server

This Serper MCP Server supports search and webpage scraping, and all the most recent parameters introduced by the Serper API, like location.

Featured
TypeScript
The Verge News MCP Server

The Verge News MCP Server

Provides tools to fetch and search news from The Verge's RSS feed, allowing users to get today's news, retrieve random articles from the past week, and search for specific keywords in recent Verge content.

Featured
TypeScript
Google Search Console MCP Server

Google Search Console MCP Server

A server that provides access to Google Search Console data through the Model Context Protocol, allowing users to retrieve and analyze search analytics data with customizable dimensions and reporting periods.

Featured
TypeScript
Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.

Featured
TypeScript
MCP PubMed Search

MCP PubMed Search

Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.

Featured
Python
dbt Semantic Layer MCP Server

dbt Semantic Layer MCP Server

A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.

Featured
TypeScript
Tavily MCP Server

Tavily MCP Server

Provides AI-powered web search capabilities using Tavily's search API, enabling LLMs to perform sophisticated web searches, get direct answers to questions, and search recent news articles.

Featured
Python
mixpanel

mixpanel

Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Featured
TypeScript