by aringadre76
Search PubMed for biomedical papers, retrieve abstracts and metadata, generate citations in multiple styles, and track c
Searches biomedical literature from PubMed and other academic databases to retrieve papers, abstracts, and metadata. Generates citations in multiple formats and provides access to full-text content when available.
PubMed Research is a community-built MCP server published by aringadre76 that provides AI assistants with tools and capabilities via the Model Context Protocol. Search PubMed for biomedical papers, retrieve abstracts and metadata, generate citations in multiple styles, and track c It is categorized under search web, ai ml.
You can install PubMed Research in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
PubMed Research is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
We wired PubMed Research into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
PubMed Research is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: PubMed Research is the kind of server we cite when onboarding engineers to host + tool permissions.
PubMed Research reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, PubMed Research benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
I recommend PubMed Research for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired PubMed Research into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, PubMed Research benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
PubMed Research has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: PubMed Research surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 53
A powerful, consolidated research tool that helps you find and analyze academic research papers from PubMed, Google Scholar, ArXiv, and JSTOR through just 5 powerful tools.
This tool helps you:
FIRECRAWL_API_KEY is set in the environment (or a Firecrawl client is provided), the web_research tool can scrape URLs and run web search. See Configuration and copy .env.example to .env to set your key. Get an API key at firecrawl.dev.Configuration for environment variables and API keys is documented in more detail in the docs/ folder and .env.example. At a high level, you configure API keys via environment variables and should avoid committing any secret values.
src/
├── index.ts # Main server entry point (consolidated)
├── adapters/ # Data source connectors
│ ├── pubmed.ts # PubMed API integration
│ ├── google-scholar.ts # Google Scholar web scraping
│ ├── google-scholar-firecrawl.ts # Firecrawl integration
│ ├── arxiv.ts # ArXiv integration
│ ├── unified-search.ts # Basic multi-source search
│ ├── enhanced-unified-search.ts # Advanced multi-source search
│ └── preference-aware-unified-search.ts # User preference integration
├── preferences/ # User preference management
│ └── user-preferences.ts # Preference storage and retrieval
└── models/ # Data structures and interfaces
├── paper.ts # Paper data models
├── search.ts # Search parameter models
└── preferences.ts # Preference models
docs/
├── README.md # Documentation index and overview
├── CONSOLIDATION_GUIDE.md # Complete consolidation guide
├── TOOL_CONSOLIDATION.md # Quick tool mapping reference
├── PROJECT_STRUCTURE.md # Clean project organization
├── API_REFERENCE.md # Complete API documentation
├── ARCHITECTURE.md # Technical system design
├── DATA_MODELS.md # Data structure definitions
└── DEVELOPMENT.md # Developer setup guide
tests/
├── test-preferences.js # Preference system tests
├── test-all-tools-simple.sh # Bash test runner (recommended)
├── test_all_tools.py # Python test runner
└── test-all-tools.js # JavaScript test runner
├── package.json # Project dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── .env.example # Environment variables template
└── README.md # This file
Pick your AI tool below to get started quickly:
Cursor is a true one-click install via the deeplink above. For other tools, the buttons jump to the relevant configuration section.
Add this to your claude_desktop_config.json under mcpServers:
{
"mcpServers": {
"scholarly-research-mcp": {
"command": "npx",
"args": ["-y", "scholarly-research-mcp"]
}
}
}
Then fully restart Claude Desktop.
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonIf you use Cursor, you can install this MCP server with a single click:
This opens Cursor and pre-fills an MCP server that runs npx -y scholarly-research-mcp. You’ll need Node.js and npm available on your system.
Create .vscode/mcp.json in your project (or edit your global MCP config) and add:
{
"servers": {
"scholarly-research-mcp": {
"command": "npx",
"args": ["-y", "scholarly-research-mcp"]
}
}
}
Then reload VS Code so the Copilot / MCP integration picks it up.
If your tool lets you point at a local MCP server command, use:
npx -y scholarly-research-mcp
or, after cloning this repo and building:
node dist/index.js
Configure your AI tool to use that command as an MCP server.
For any MCP-compatible assistant that accepts a JSON config (similar to mcp.json), use:
{
"mcpServers": {
"scholarly-research-mcp": {
"command": "npx",
"args": ["-y", "scholarly-research-mcp"]
}
}
}
Paste this into the assistant’s MCP configuration and adjust paths/env vars if needed.
node -v.PUPPETEER_EXECUTABLE_PATH or CHROME_PATH.Download the tool
git clone https://github.com/aringadre76/mcp-for-research.git
cd mcp-for-research
Install dependencies
npm install
Build the tool
npm run build
Configure your AI assistant
node dist/index.jsTest the setup
npm run test:all-tools-bash
Connect from your AI assistant
node dist/index.js in the mcp-for-research folder.research_search tool to confirm it is working.The server provides 5 consolidated MCP tools that replace the previous 24 individual tools:
research_searchComprehensive research paper search across PubMed, Google Scholar, and ArXiv. Uses the preference-aware adapter: when Firecrawl is configured and the preference is set, Google Scholar can use Firecrawl instead of Puppeteer. JSTOR is accepted in sources but not implemented; if requested, a note is appended: "JSTOR is not implemented; results are from other sources."
Parameters: Query, sources (pubmed, google-scholar, arxiv, jstor), maxResults, startDate, endDate, journal, author, includeAbstracts, sortBy
paper_analysisGet comprehensive paper information, full text, and analysis including quotes, statistics, and findings.
Combines: Paper retrieval, content extraction, and analysis tools Parameters: Identifier, analysis type, quote limits, section lengths
citation_managerGenerate citations in multiple formats and get citation information including counts and related papers.
Combines: Citation tools, citation counting, and related paper discovery Parameters: Identifier, action, format, related paper limits
research_preferencesManage research preferences including source priorities, search settings, display options, and ca
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.