scigantic-mcp
Official{"answer": "This is an MCP server that lets you discover and understand 5,000+ curated public scientific data archives across all domains — no API keys or downloads required, read-only access over stdio or HTTP.\n\n- Search archives (search_archives): Natural-language queries across the full catalog (e.g., "single-cell RNA-seq of human cortex"), with optional category filtering and result limits. Returns ranked matches with IDs, titles, categories, and summaries.\n- Get archive metadata (get_archive): Full metadata for a specific archive by ID, including whether a schema card exists.\n- Inspect structure (get_schema_card): Compact schema card with file format, column definitions, sample rows/headers, sidecar docs (READMEs/data dictionaries), and a copy-paste starter code cell — all without downloading.\n- Browse files (list_archive_files): Sample of files/objects in storage (up to 200), to see what's physically in the archive.\n- Get data access (get_data_access): Storage location plus copy-paste code snippets filterable by language (datasets, s3fs, gcsfs, etc.).\n- Guided prompts: explore_dataset(topic) walks search → schema cards → recommendation → load code; start_analysis(archive_id, goal?) pulls schema + access snippet and outlines an analysis plan. Available as slash commands in supported clients like Claude Code."}
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@scigantic-mcpfind public RNA-seq datasets on human cancer and show their schema cards"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
scigantic-mcp
A Model Context Protocol server that exposes the Scigantic catalog of public scientific data archives to any MCP client.
It is built to drop into Kiro for Life Sciences alongside its domain database servers. Where each Kiro server wraps one domain's APIs (genomics, proteomics, structural, …), Scigantic is the cross-domain launchpad: 5,000+ curated public archives spanning every domain, each with an LLM-ready schema card (file format, columns, sample rows/headers, inlined READMEs/data dictionaries, and a copy-paste starter cell) so an agent can understand a dataset's structure before downloading anything.
It is discovery-only and zero-config — every tool calls public, read-only Scigantic endpoints, so there is no API key to set up.
Requires Python 3.10+ and MCP SDK 2.x.
Prefer the hosted server if your client speaks HTTP. Scigantic also runs a remote MCP server at
https://api.scigantic.com/mcp(no auth, nothing to install, and it carries two extra tools):claude mcp add --transport http scigantic https://api.scigantic.com/mcp. This package exists for clients that launch stdio servers, such as Kiro.
Tools
Tool | What it does |
| Natural-language search across the whole catalog. |
| Full metadata for one archive. |
| The compact schema card — the fastest way to learn a dataset's structure. |
| How to load the dataset in your own environment: storage location + copy-paste code snippets. |
| A sample of the files/objects in the archive. |
Related MCP server: EasyPeasyMCP
Prompts (guided workflows)
These surface as slash commands in Claude Code (/mcp__scigantic__<name>):
Prompt | What it does |
| Search → inspect schema cards → recommend the best dataset → offer load code. |
| Pull schema card + data-access snippet for an archive and outline an analysis plan. |
Install & register in Kiro
Add an entry under mcpServers in ~/.kiro/settings/mcp.json.
Option A — uvx (zero-install, recommended):
{
"mcpServers": {
"scigantic": {
"command": "uvx",
"args": ["scigantic-mcp"]
}
}
}Option B — install into a venv (matches the Kiro servers' own mcp.json form):
python3 -m venv .venv && . .venv/bin/activate
pip install scigantic-mcp # or: pip install /path/to/scigantic-mcp{
"mcpServers": {
"scigantic": {
"command": "/path/to/.venv/bin/scigantic-mcp",
"env": {
"SCIGANTIC_API_URL": "https://api.scigantic.com"
}
}
}
}Works the same in Claude Desktop / Claude Code (claude mcp add scigantic -- uvx scigantic-mcp)
or any MCP client that launches stdio servers.
Configuration
Env var | Default | Purpose |
|
| API base (set to |
|
| Origin header → selects the public (default) catalog tenant. |
Stability
This package is a thin client over the public Scigantic REST API. That API is not versioned and may change without notice — if a response shape moves, a pinned older release of this package can break. Pin a version you have tested, and open an issue if a tool starts returning something unexpected.
The MCP tool names and their arguments are treated as the stable surface, and will not change without a minor version bump.
Develop & test
The tool/client layer has no mcp dependency, so those tests run on any Python
with httpx and need no network (mocked transport):
python3 tests/test_tools.py # or: pytesttests/test_server_import.py covers the wiring layer — that the server module
imports, and that the registered tools and prompts are the expected set. It needs
the mcp SDK installed (Python ≥ 3.10) and is skipped otherwise:
pip install -e '.[test]' && pytestKeep it that way: the tool tests skip server.py on purpose, so an SDK breaking
change is invisible to them. All 12 passed while the server could not import at
all under SDK 2.x, which is what test_server_import.py now guards against.
Roadmap
Richer discovery for agents — structured tool outputs and MCP resources (attach an archive + its schema card as durable context).
Upstream inclusion as
life-sciences-sciganticinaws-samples/sample-kiro-power-life-sciences.Hosted compute is intentionally not exposed here. Scigantic's notebooks are interactive (a JupyterLab URL a human opens); handing an external agent that URL is a dead end. The agent-to-agent path is
get_data_access— the caller runs the analysis in its own environment. Letting Scigantic execute code for an agent (run against an ephemeral kernel with the dataset mounted, return outputs) is a separate capability the platform would need to build first.
License
MIT-0.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA comprehensive Model Context Protocol server that provides AI assistants with direct access to Semantic Scholar's academic database, enabling advanced paper discovery, citation analysis, author research, and AI-powered recommendations.Last updated15
- Alicense-qualityCmaintenanceA lightweight, zero-config MCP server that makes documentation and API specifications instantly accessible to AI models using the llms.txt standard. It enables searching and retrieving full documentation, OpenAPI, and AsyncAPI specs without requiring a complex RAG infrastructure or vector database.Last updated361Apache 2.0
- FlicenseAqualityDmaintenanceAn MCP server for the Hugging Face Dataset Viewer API that enables searching, fetching, and filtering datasets on the Hugging Face Hub. It allows users to explore schemas, perform full-text searches, and analyze dataset statistics through natural language.Last updated10

gliana-mcp-remoteofficial
Flicense-qualityBmaintenanceHosted MCP server for browsing the GlianaAI model catalog with zero setup, providing model listings, pricing, and schema information via Streamable HTTP.Last updated
Related MCP Connectors
Science MCP — free science data APIs
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
An MCP server that gives your AI access to the source code and docs of all public github repos
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Scigantic/scigantic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server