Block 1 - Search Configuration
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This workflow contains community nodes that are only compatible with the self hosted version of n8n. Description: Unified Academic Search Across Major Research Databases This powerful workflow enab...
n8n-nodes-base.stickynote, n8n-nodes-base.set, n8n-nodes-pdfvector.pdfvector, n8n-nodes-base.code, n8n-nodes-base.writebinaryfile
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by PDF Vector.
Original n8n.io sourceThis workflow contains community nodes that are only compatible with the self-hosted version of n8n.
Description:
This powerful workflow enables researchers to search multiple academic databases simultaneously, automatically deduplicate results, and export formatted bibliographies. By leveraging PDF Vector's multi-database search capabilities, researchers can save hours of manual searching and ensure comprehensive literature coverage across PubMed, ArXiv, Google Scholar, Semantic Scholar, and ERIC databases.
This template is designed for:
It solves the critical problem of fragmented academic search by providing a single interface to query all major databases, eliminating duplicate results, and standardizing output formats.
Configure PDF Vector Credentials
Import the Workflow Template
Customize Search Parameters
Configure Export Options
Test Your Configuration
The workflow implements a sophisticated search pipeline:
Adding Custom Databases:
// In the PDF Vector search node, add to providers array:
"providers": ["pubmed", "semantic_scholar", "arxiv", "google_scholar", "eric", "your_custom_db"]
Modifying Relevance Algorithm: Edit the "Rank by Relevance" node to adjust scoring weights:
// Adjust these weights for your needs:
const titleWeight = 10; // Title match importance
const citationWeight = 5; // Citation count importance
const recencyWeight = 10; // Recent publication bonus
const fulltextWeight = 15; // Full-text availability bonus
Custom Export Formats: Add new format generators in the workflow:
// Example: Add APA format export
const apaFormat = papers.map(p => {
const authors = p.authors.slice(0, 3).join(', ');
return `${authors} (${p.year}). ${p.title}. ${p.journal || 'Preprint'}.`;
});
Advanced Filtering: Implement additional filters:
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Academic research search across five databases with PDF vector & multiple exports |
|---|---|
| Complexity | intermediate |
| Nodes | 9 |
| Categories | AI RAG, Multimodal AI |
| Author | PDF Vector |
| Published | 14 Aug 2025 |
Use the JSON export at /data/workflows/7360/7360.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This workflow contains community nodes that are only compatible with the self hosted version of n8n. Description: Unified Academic Search Across Major Research Databases This powerful workflow enab...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your AI RAG, Multimodal AI use case.