Unified research-data acquisition MCP — search & fetch datasets across Zenodo, DataCite, NCBI omics (GEO/SRA/BioProject), and literature (PubMed/OpenAIRE) behind one normalized model.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !README contains suspicious pattern: eval\s*\(
claude mcp add data-aggregator-mcp -- uvx data-aggregator-mcp{
"mcpServers": {
"data-aggregator-mcp": {
"command": "uvx",
"args": ["data-aggregator-mcp"]
}
}
}MCP Servers overview
# 🔎 data-aggregator-mcp
**One MCP server to find and fetch research data across archives, omics
registries, and literature — behind a single normalized model.**
[](https://pypi.org/project/data-aggregator-mcp/)
[](https://pypi.org/project/data-aggregator-mcp/)
[](https://pypi.org/project/data-aggregator-mcp/)
[](https://github.com/musharna/data-aggregator-mcp/blob/main/LICENSE)
[](https://github.com/musharna/data-aggregator-mcp/actions/workflows/ci.yml)
[](https://glama.ai/mcp/servers/musharna/data-aggregator-mcp)
[](https://doi.org/10.5281/zenodo.21636332)
`search` one query across **17 sources** — **Zenodo, DataCite** (Dryad /
Figshare / Dataverse / OSF / OpenNeuro / Mendeley), **NCBI omics**
(GEO / SRA / BioProject), **BioStudies** (EBI, incl. ArrayExpress),
**literature** (PubMed / OpenAIRE), **HuggingFace** datasets, **DataONE**
(eco / environmental), **OmicsDI** (proteomics / metabolomics), **DANDI**
(neurophysiology), **CZ CELLxGENE** (single-cell), **OpenML** (ML datasets),
**RCSB PDB** (structures), **UniProtKB** (proteins), the **GWAS Catalog**,
**GBIF** (biodiversity), **data.gov** (US federal open data), and **NASA CMR**
(Earth science) — deduplicated, normalized, and cross-linked. `resolve` any hit to its file
manifest, citation, trust signals, and the data it points at. `fetch` it to
disk with checksum verification.
mcp-name: io.github.musharna/data-aggregator-mcp
<p align="center">
<img src="https://raw.githubusercontent.com/musharna/data-aggregator-mcp/main/examples/assets/demo.svg"
alt="data-aggregator-mcp stdio demo — initialize, tools/list (search, resolve, fetch, operate, relate, list_sources), and a live list_sources call showing the wired sources across archives, omics, and literature"
width="820">
</p>
## ✨ Why this
Most data MCPs wrap a single source. This one **unifies** them behind six tools
and one `DataResource` model, so an agent searches once and gets back comparable
records:
- **Multi-domain, one model** — generalist archives + raw omics + literature,
deduplicated by DOI (the fetchable record wins over bare metadata).
- **Taxonomy synonym expansion** — `organism="Orobanche aegyptiaca"` also matches
`Phelipanche aegyptiaca` (NCBI Taxonomy), so a species rename doesn't cost you
results.
- **Paper → data bridge** — resolve a paper and get links to the GEO / SRA /
BioProject / DataCite records it produced.
- **Verified fetch** — streams to disk with md5 verification where the source
exposes a checksum, optional archive unpacking, and a fail-loud integrity
sniff that rejects an HTML paywall page served as a "PDF".
- **Citations, access & full text** — render a citation in any CSL style, get
normalized access/license, and pull open-access full text — all in one
`resolve`.
- **Trust signals** — usage `metrics` (citations / views / downloads / likes),
version status (`is_latest` / `superseded_by`), and `last_updated` freshness,
surfaced wherever the source exposes them.
- **Interop exports** — `resolve(format="croissant")` or `"ro-crate"` hands a
dataset to an ML or research-packaging pipeline as standard JSON-LD.
- **Operate on data in place** — `operate` reads the schema, previews rows, or
runs a read-only SQL `SELECT` against a remote Parquet/CSV/TSV **without
downloading it** (Parquet footer + DuckDB httpfs range reads). Optional
`[operate]` extra; base install is unchanged.
- **Relate across records** — `relate` takes a handful of resolved ids and
reports how they connect — shared accession, shared cross-identifier, an
explicit link, or version lineage — naming the literal shared value as
evidence. Metadata hints only: it never reads files or executes a join.
→ Full rationale and a comparison vs. single-source servers, breadth gateways, and
ML-dataset tools: **[docs/POSITIONING.md](https://github.com/musharna/data-aggregator-mcp/blob/main/docs/POSITIONING.md)**.
<p align="center">
<img src="https://raw.githubusercontent.com/musharna/data-aggregator-mcp/main/docs/assets/architecture.svg"
alt="Architecture: an MCP client speaks stdio to data-aggregator-mcp's six tools, which fan out through one router (DOI dedup, ontology expansion, ranking) to archives (Zenodo, DataCite, HuggingFace, DataONE, OpenML, RCSB PDB), omics (GEO, SRA, BioProject, OmicsDI, DANDI, CELLxGENE, GWAS Catalog), and literature (PubMed, OpenAIRE, EuropePMC, Unpaywall)"
width="760">
</p>
## ⚡ Quickstart
Run with no install:
```bash
uvx data-aggregator-mcp
```
Register with Claude Code:
```bash
claude mcp add data-aggregator -- uvx data-aggregator-mcp
```
A typical agent flow:
```text
search("drought stress RNA-seq", organism="Sorghum bicolor")
→ [ geo:GSE..., sra:SRX..., zenodo:..., pubmed:... ] # deduped, taxa-normalized
resolve("sra:SRX079566")
→ DataResource{ files: [ENA FASTQ urls…], access: "open", taxa: [...] }
fetch("sra:SRX079566", dest="./data")
→ ["./data/SRX079566_1.fastq.gz", …] # md5-verified
```
<details>
<summary>Other ways to run (pip, python -m, raw client config)</summary>
```bash
pip install data-aggregator-mcp
data-aggregator-mcp # or: python -m data_aggregator_mcp
```
To use the `operate` tool (query remote tabular files in place), install the
optional extra:
```bash
pip install "data-aggregator-mcp[operate]"
```
Add to a client's MCP config (e.g. Claude Desktop `claude_desktop_config.json`):
```json
{
"mcpServers": {
"data-aggregator": {
"command": "uvx",
"args": ["data-aggregator-mcp"],
"env": { "NCBI_API_KEY": "your-optional-key" }
}
}
}
```
</details>
## 🌐 Transports
**stdio (default)** — the server runs as a child of the client, so `fetch()`
writes to your own disk. Nothing to configure; every command above uses it.
**Streamable HTTP** — the same six tools, prompts, and resources over HTTP:
```bash
data-aggregator-mcp --transport http # → http://127.0.0.1:8000/mcp/
```
| flag | default | notes |
| -------------------------- | ---------------- | ----------------------------------------------------------------- |
| `--transport {stdio,http}` | `stdio` | |
| `--host` | `127.0.0.1` | this machine only; any non-loopback value requires `--allow-host` |
| `--port` | `8000` | |
| `--allow-host HOST:PORT` | auto on loopback | permitted `Host` header, repeatable — **required off loopback** |
| `--allow-origin ORIGIN` | derived | permitted browser `Origin` header, repeatable |
| `--stateless` | off | fresh transport per request, no session affinity |
| `--json-response` | off | plain JSON responses instead of SSE streams |
The endpoint is served at **`/mcp/`** — with the trailing slash. `/mcp` answers
`307` redirecting there, which is fine for any client that follows redirects (a
`307` preserves the POST body); point one that doesn't straight at `/mcp/`. In
stateful mode, sessions idle for 30 minutes are reaped.
**DNS-rebinding protection is always on.** A loopback bind derives its own
host/origin allowlist, so the default needs no configuration. A non-loopback bind
(`--host 0.0.0.0`, a LAN address, a container interface) **refuses to start**
without at least one explicit `--allow-host` — guessing an allowlist there is
precisely the hole the protection exists to close, so it fails loud instead of
open:
```bash
data-aggregator-mcp --transport http --host 0.0.0.0 \
--allow-host data.example.org:8000
```
Once running, a request whose `Host` header is outside the allowlist is refused
with `421 Invalid Host header`.
> ⚠️ **`fetch(dest=…)` writes to the _server's_ filesystem, not the client's.**
> Over stdio those are the same disk; over HTTP they may be different machines,
> and the caller gets back paths it cannot read. Treat `dest` on an HTTP
> deployment as server-side staging, or use stdio when you need the bytes
> locally. `search`, `resolve`, `operate`, `relate`, and `list_sources` are
> unaffected — they return data, not paths.
## 🗂️ Sources
| Source | Discover | Fetch | Checksum |
| ---------------------------- | :------: | :---------------: | :--------------: |
| Zenodo | ✅ | ✅ | md5 |
| DataCite → Figshare | ✅ | ✅ | md5 |
| DataCite → Dataverse | ✅ | ✅ | md5 |
| DataCite → OSF | ✅ | ✅ | md5 |
| DataCite → Dryad | ✅ | manifest only¹ | sha-256 (listed) |
| DataCite → Mendeley & others | ✅ | — | — |
| NCBI SRA | ✅ | ✅ (ENA FASTQ) | md5 |
| NCBI GEO | ✅ | ✅ (`suppl/`) | none² |
| NCBI BioProject | ✅ | → SRA links | — |
| PubMed / OpenAIRE | ✅ | ✅ (OA full text) | none² |
| HuggingFace datasets | ✅ | ✅ (resolve URL) | none |
| DataONE (eco/env) | ✅ | ✅ (MembWhat people ask about data-aggregator-mcp
What is musharna/data-aggregator-mcp?
+
musharna/data-aggregator-mcp is mcp servers for the Claude AI ecosystem. Unified research-data acquisition MCP — search & fetch datasets across Zenodo, DataCite, NCBI omics (GEO/SRA/BioProject), and literature (PubMed/OpenAIRE) behind one normalized model. It has 4 GitHub stars and its last recorded update is dated 2026-09-23.
How do I install data-aggregator-mcp?
+
You can install data-aggregator-mcp by cloning the repository (https://github.com/musharna/data-aggregator-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is musharna/data-aggregator-mcp safe to use?
+
Our security agent has analyzed musharna/data-aggregator-mcp and assigned a Trust Score of 85/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains musharna/data-aggregator-mcp?
+
musharna/data-aggregator-mcp is maintained by musharna. The last recorded GitHub activity is dated 2026-09-23, with 5 open issues.
Are there alternatives to data-aggregator-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy data-aggregator-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/musharna-data-aggregator-mcp)<a href="https://claudewave.com/repo/musharna-data-aggregator-mcp"><img src="https://claudewave.com/api/badge/musharna-data-aggregator-mcp" alt="Featured on ClaudeWave: musharna/data-aggregator-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.