Introduction: Why Automate Research Workflows?

Research professionals spend an estimated 25-30% of their time on information gathering and organization tasks that don’t require expert judgment: monitoring databases for new publications, sorting literature into folders, forwarding relevant findings to colleagues, updating spreadsheets with new citations. These tasks are perfect targets for automation.

Make.com (formerly Integromat) is a visual automation platform that connects hundreds of apps and services without requiring any code. Unlike n8n, Make.com is fully cloud-hosted with a generous free tierโ€”making it accessible to individual researchers and small teams without infrastructure management overhead.

๐ŸŽฏ
What You’ll Build

A research pipeline that: automatically monitors PubMed for new papers matching your keywords โ†’ extracts key metadata โ†’ sends abstracts to ChatGPT for summarization โ†’ saves structured data to Notion โ†’ notifies your team in Slack. All running automatically, 24/7.

Why Make.com for Research Automation

Why Make.com for Research Automation

Photo: Magda Ehlers / Pexels

โ˜๏ธ

Zero Infrastructure

Fully cloud-hosted. No Docker, no server management, no deployment. Sign up and build in under 10 minutes.

๐Ÿ†“

Free Tier

1,000 operations/month free. Enough for most individual researcher workflows. Pro tiers are affordable at $9/month.

๐Ÿ”—

1,000+ Integrations

Native connectors for Notion, Google Sheets, Slack, Gmail, PubMed RSS, Airtable, HubSpot, and hundreds more.

๐Ÿ‘๏ธ

Visual Scenarios

Intuitive drag-and-drop interface with real-time execution visualization. Watch your data flow through each module live.

๐Ÿ”„

Error Recovery

Built-in retry logic, error handling branches, and incomplete execution resumeโ€”critical for reliable research pipelines.

๐Ÿ“Š

Data Transformation

Powerful built-in functions for text manipulation, date formatting, array operations, and JSON parsingโ€”without code.

Setting Up Your Make.com Account

Setting Up Your Make.com Account

Photo: Pixabay / Pexels

  1. Go to make.com and create a free account (email only, no credit card)
  2. Confirm your email address
  3. Select your primary use case during onboarding (choose “Data Management”)
  4. You’ll land on the Scenarios dashboardโ€”this is where your automations live
  5. Click + Create a new scenario to start building
โ„น๏ธ
Make.com Terminology

In Make.com: “Scenarios” = workflows; “Modules” = individual steps/actions (equivalent to nodes in n8n); “Bundles” = individual data records passing through the scenario; “Operations” = the billing unit (each module execution = 1 operation).

Build Step 1: Automated Literature Alerts

Build Step 1: Automated Literature Alerts

Photo: Anna Danilina / Pexels

The first module in your research pipeline monitors for new papers matching your research keywords.

1

Add an RSS Module (PubMed Watch)

In your new scenario, click the empty circle to add the first module. Search for RSS and select Watch RSS Feed Items. Paste your PubMed RSS URL. You can generate a PubMed RSS URL for any search query at pubmed.ncbi.nlm.nih.gov by running a search and clicking “Create RSS”.

2

Configure the Schedule

Set Maximum number of returned items to 10 (prevents large bursts). Under Scheduling, set the interval to Every Day at 7:00 AM. This checks PubMed once daily for new publications matching your search query.

3

Test with a Real Feed

Run the module once manually (Run once button). You should see recent PubMed entries with title, link, abstract, and publication date. Verify the data structure before building further modules.

Build Step 2: Organize into Research Database

Build Step 2: Organize into Research Database

Photo: Gustavo Fring / Pexels

New paper metadata flows into a Notion database (or Google Sheets) automatically.

1

Connect Notion (or Google Sheets)

Add a Notion module โ†’ Create a Database Item. Authenticate your Notion account via OAuth. Create a Notion database with fields: Title (text), Authors (text), Publication Date (date), Abstract (text), PubMed URL (URL), AI Summary (text), Status (select).

2

Map RSS Data to Notion Fields

Map the RSS module outputs to your Notion database fields: Title โ†’ RSS title; Publication Date โ†’ RSS pubDate; PubMed URL โ†’ RSS link; Abstract โ†’ RSS description (this contains the abstract). Leave AI Summary empty for nowโ€”we’ll populate it in the next step.

Build Step 3: AI Summarization via ChatGPT

Build Step 3: AI Summarization via ChatGPT

Photo: Breakingpic / Pexels

After saving the paper metadata, automatically generate a structured summary using ChatGPT.

1

Add OpenAI Module

Add an OpenAI (ChatGPT) module โ†’ Create a Completion. Connect your OpenAI API key. Set Model to gpt-4o-mini (cost-efficient for summarization). Set max tokens to 300.

2

Write Your Research Prompt

In the prompt field, combine static instructions with dynamic abstract data:

Research Summarization Prompt
Summarize this clinical research abstract in exactly 3 bullet points:
- Key research question / objective
- Main methodology or study design
- Primary finding or conclusion

Abstract:
{1.description}

Format: 3 concise bullet points, plain text, no headers. Max 150 words total.
3

Update Notion with AI Summary

Add another Notion module โ†’ Update a Database Item. Use the Notion page ID from Step 2 to update the AI Summary field with the ChatGPT output ({3.choices[].message.content}). This enriches your database entry automatically.

Build Step 4: Team Sharing and Notifications

Build Step 4: Team Sharing and Notifications

Photo: Yan Krukau / Pexels

Automatically notify your team about new relevant papers matching their interests.

  1. Add a Slack module โ†’ Create a Message
  2. Connect your Slack workspace via OAuth
  3. Set channel to your research team’s channel (e.g., #new-papers)
  4. Compose the message using Make.com’s text functions to format: title, publication date, PubMed link, and the AI summary bullet points
  5. Optionally add a Router module first to only notify about papers matching specific keywords (e.g., only papers about your specific therapeutic area)
โœ…
Final Pipeline Check

Your complete pipeline: PubMed RSS โ†’ New paper detected โ†’ Save to Notion database โ†’ Generate AI summary โ†’ Update Notion entry โ†’ Notify Slack channel. Total operations per paper: ~5 (well within free tier for most research teams).

Advanced Scenarios

Advanced Scenarios

Photo: artmoon / Pexels

๐Ÿ—บ๏ธ

Multi-Database Monitoring

Add multiple RSS trigger modules for different databases (PubMed, bioRxiv, SSRN) and merge with an Array Aggregator before processing.

๐Ÿท๏ธ

AI Auto-Classification

Add a second ChatGPT call to classify each paper by research theme, methodology, and relevance score. Use the classification to route papers to different Notion databases or team channels.

๐Ÿ“…

Weekly Digest Email

Add a second scenario triggered weekly that queries your Notion database for papers from the past 7 days and emails a formatted digest to your team.

๐Ÿ“Ž

PDF Download and OCR

For open-access papers, add an HTTP module to download PDFs, then a text extraction step, enabling full-text AI analysis beyond the abstract.

Make.com vs n8n: Which to Choose?

Make.com vs n8n: Which to Choose?

Photo: Tima Miroshnichenko / Pexels

FactorMake.comn8n (Self-hosted)
Setupโœ“ Sign up, start buildingRequires Docker/server
CostFree tier; $9/mo for more operationsโœ“ Free self-hosted
Maintenanceโœ“ Zeroโ€”fully managedYou manage updates and server
Data PrivacyData on Make.com serversโœ“ On your server
ScaleOperation limits per planโœ“ Unlimited executions
Ease of Useโœ“ More intuitive for beginnersSteeper learning curve

For individual researchers and small teams who want quick results without server management: Make.com. For enterprise teams with data privacy requirements or high-volume automation: n8n self-hosted.

Frequently Asked Questions

Frequently Asked Questions

Photo: Pixabay / Pexels

Is Make.com’s free tier sufficient for research automation?+

Yes, for most individual researchers. With 1,000 operations/month, you can process approximately 200 new papers monthly (5 operations each). If you’re monitoring multiple databases or have a large team, the $9/month Core plan (10,000 ops) is usually sufficient. Batch API calls to OpenAI to minimize operation count.

Can I replace Google Scholar Alerts with Make.com?+

Yes, and you can do much more. PubMed’s RSS feed is more reliable and structured than Google Scholar Alerts emails. With Make.com, you can filter, enrich, summarize, and route the dataโ€”not just receive it. For comprehensive coverage, run RSS feeds from PubMed, bioRxiv, and Semantic Scholar in parallel.

How do I handle papers that aren’t open access?+

The RSS feed gives you the abstract, which is sufficient for AI summarization and relevance screening. For full-text access, the workflow can add the PubMed link to your reading list (in Notion or Zotero) for manual retrieval. Focus automation on abstract-level processingโ€”that’s where the volume is.

K
Kedarinath Talisetty, CCDMยฎ
Clinical Data Manager & AI Automation Engineer ยท AI Tool Clinic
Kedarinath builds AI-powered research workflows for pharmaceutical and academic teams. He specializes in no-code automation tools that make evidence synthesis faster and more reproducible.
K
Kedarinath Talisetty
CCDM® Certified · Clinical Data & AI Specialist
12+ years in clinical data management. Reviews AI tools through an evidence-based clinical lens to help healthcare professionals and businesses make informed decisions.