Bibliography Search MCP

Bibliography Search MCP

A multi-source academic bibliography search server that retrieves papers from 7 databases with automatic language detection, LLM-powered query planning, and relevance scoring.

Category
Visit Server

README

Bibliography Search MCP

<p align="center"> <img src="https://img.shields.io/badge/TypeScript-3178C6?logo=typescript&logoColor=fff" alt="TypeScript" /> <img src="https://img.shields.io/badge/Cloudflare_Workers-F38020?logo=cloudflare&logoColor=fff" alt="Cloudflare Workers" /> <img src="https://img.shields.io/badge/Groq-10a37f?logo=groq&logoColor=fff" alt="Groq" /> <img src="https://img.shields.io/badge/arXiv-B31B1B?logo=arxiv&logoColor=fff" alt="arXiv" /> </p>

A multi-source academic bibliography search MCP (Machine Context Protocol) server running on Cloudflare Workers. Supports both Chinese and English literature retrieval across 7 academic databases with automatic language detection, query planning, and scoring.

Features

  • Multi-source search — arXiv, DBLP, Semantic Scholar, Crossref, OpenAlex, PubMed, Baidu Xueshu
  • Automatic language detection — chooses appropriate sources and search strategies for Chinese vs English queries
  • LLM-powered query planning — uses Groq API to build optimal boolean search queries from natural language
  • Dictionary fallback — built-in Chinese academic vocabulary dictionary when LLM is unavailable
  • Medical query detection — auto-routes biomedical queries to PubMed
  • Deduplication & scoring — relevance-based ranking across all sources
  • Export formats — CSV and BibTeX support

Usage (MCP)

Configure as an MCP server in your MCP client:

{
  "mcpServers": {
    "bibliography-search": {
      "url": "https://bibliography-search-mcp.example.workers.dev/mcp"
    }
  }
}

Passing your own API keys

Send your Groq key via request header — it takes precedence over the environment variable:

x-groq-api-key: gsk_your_key_here

Similarly for Baidu Xueshu:

x-baidu-api-key: your_baidu_key

This is useful when the server is shared but each client has their own quota.

Tools

Tool Description
search_papers Search academic papers across multiple sources
analyze_query Analyze a query without executing search

Environment

Variable Description
BAIDU_API_KEY Baidu Xueshu API key (for Chinese literature)
GROQ_API_KEY Groq API key (for LLM query planning)

Deployment

1. Clone and install

git clone https://github.com/your-username/bibliographySearchMCP.git
cd bibliographySearchMCP
npm install

2. Login to Cloudflare

npx wrangler login

3. Set environment variables

npx wrangler secret put GROQ_API_KEY
# paste your Groq API key when prompted

npx wrangler secret put BAIDU_API_KEY
# paste your Baidu Xueshu API key when prompted

4. Deploy

npm run deploy

Your worker will be available at https://bibliography-search-mcp.your-subdomain.workers.dev/mcp.

Updating

npx wrangler deploy

Development

npm install
npm run dev        # local dev with wrangler
npm run typecheck  # type check
npm run deploy     # deploy to Cloudflare Workers

Architecture

User query → [LLM / Dict tokenizer] → search query → [arXiv | DBLP | Semantic Scholar | Crossref | OpenAlex | PubMed | Baidu]
                                                                                                                          ↓
                                                                                              [Deduplicate → Score → Rank]
                                                                                                                          ↓
                                                                                                              Result (JSON / CSV / BibTeX)

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
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
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
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
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured