Mondo
Click on "Deploy 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., "@Mondoresolve 'Carcinoma, Non-Small-Cell Lung' and 'Stage IV Melanoma' to Mondo terms"
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.
@pipeworx/mondo
Resolves free-text condition/disease strings — clinical trial registry "conditions" fields, drug-label indication wording, anything a caller typed by hand — onto the Mondo Disease Ontology (MONDO), with a match-quality label the caller can trust and cross-ontology xrefs for the matched term.
Part of Pipeworx — an MCP gateway connecting AI agents to 1558+ live data sources.
Tools
mondo_resolve_condition(conditions, expand?)— batch-resolves 1-25 free-text condition strings. For each, returns the original wording verbatim, the best MONDO id + label, andmatch_quality:exact-label— identical (case/punctuation-insensitive) to the term's primary Mondo label.exact-synonym— identical to one of the term's listed exact synonyms.broader/narrower— the string exactly names a parent or child term reached via the Mondo hierarchy, not the top full-text hit itself. This includes a fixed-prefix strip of a LEADING stage/status qualifier a registry stacks onto the front of a disease name — "Stage IV Melanoma", "Metastatic Breast Cancer", "Recurrent X" — when the remainder after stripping is an exact label/synonym match, the response isbroader(the input names a subtype/stage of the matched disease) with a note listing what was stripped.fuzzy— the closest full-text match from EBI OLS4, not a confirmed exact term. Never presented as exact.no-match— nothing plausible found. The response says what queries were tried (including relaxed variants — stripped parentheticals, un-inverted "Specific, General" MeSH form, progressively truncated trailing qualifiers like "Stage IV") and lists nearest candidates when the relaxation surfaced any. Never a bare empty result (docs/silent-zero-policy.md).
Every non-
no-matchresult also carriesxrefs(OMIM, Orphanet, DOID, UMLS, MeSH) for the resolved id, pulled from the MyDisease.info record. Passexpand: trueto also getdescendant_mondo_ids— every subtype under the resolved term, capped at 500 — for building a subtype-inclusive registry filter (e.g. "any subtype of non-small cell lung carcinoma").The match_quality label is the product. A fuzzy or hierarchical match is never upgraded to "exact" — a caller doing a clinical-safety check or building a registry filter needs to know the difference.
No second tool: term detail, hierarchy walking (ancestors/children) and raw
Mondo search already live in the ebi-ols pack — this pack only adds the
resolution + match-quality layer on top, so it doesn't duplicate that surface.
Related MCP server: clingen-link
Auth
Keyless. Both upstreams are public, unauthenticated APIs.
Data sources
https://www.ebi.ac.uk/ols4/api/search (EBI Ontology Lookup Service, restricted to
ontology=mondo) — full-text search over Mondo terms, with primary labels and exact/related synonyms. Same upstream theebi-olspack proxies; called directly here rather than chained through that pack.https://mydisease.info/v1/disease/{id} (MyDisease.info, BioThings) — per-term Mondo record: cross-ontology xrefs (
mondo.xrefs.omim/.omimps,.orphanet,.doid,.umls,.mesh) and the full transitivemondo.ancestors/mondo.descendantsid lists, used both for the broader/narrower hierarchy check and theexpandflag. Same upstream themydiseasepack proxies; called directly here rather than chained through that pack.
Matching notes for the next person:
Normalization is case-insensitive and treats any run of non-alphanumeric characters (hyphens, commas, punctuation) as a single space, so "Non-small Cell Lung Cancer" and "non small cell lung cancer" compare equal. It does not do stemming or synonym expansion beyond what OLS4 already returns as
exact_synonyms— a string that isn't in that list will not register as exact even if a human would consider it a paraphrase.MeSH's inverted "Specific, General" comma form ("Carcinoma, Non-Small-Cell Lung") is the dominant condition shape in trial registries, so it's un-inverted ("Non-Small-Cell Lung Carcinoma") and checked for an exact match alongside the literal string before falling back to fuzzy — a fixed rewrite of a known convention counts as exact, not a guess.
The leading-qualifier strip (
STAGE_QUALIFIER_RE/STATUS_QUALIFIER_REinsrc/index.ts) is a small, fixed, ordered list — a stage marker ("Stage IV", "Stage IIIA") or one ofmetastatic/recurrent/advanced/refractory/unresectable/relapsed/relapsing/progressive/localized/localised— checked BEFORE the trailing- word relaxation ladder, since it applies whether the literal string got zero hits ("Stage IV Melanoma") or some non-exact hits ("Metastatic Breast Cancer" already surfaces "breast cancer" as its top full-text hit, just not exactly). Deterministic prefix matching only, up to 3 passes, so a stacked "Advanced Metastatic Melanoma" strips both words.OLS4's
exact=truesearch param did not reliably restrict results to exact matches when tested live (2026-09) — exactness is instead determined client-side by comparing normalized query text against each candidate's label and exact synonyms.The
omimxref sometimes appears asomimps(OMIM phenotypic series) instead ofomimin the MyDisease record; both are merged into the returnedomimarray.Every OLS4/MyDisease fetch is bounded via
fetchWithTimeout; a MyDisease enrichment failure degrades to empty xrefs rather than failing the whole resolution (the OLS4 match still stands on its own).
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"mondo": {
"url": "https://gateway.pipeworx.io/mondo/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/mondo/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1558+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"mondo": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-mondo"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-mondoIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Mondo data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
ClinicalTrials MCP — wraps ClinicalTrials.gov API v2 (free, no auth)
Condition-aware ingredient and product checks for agents, with evidence tiers and citations.
Search 36M+ PubMed biomedical articles and ClinicalTrials.gov studies.
Bioinformatics MCP for genomic variant interpretation, gene-disease evidence and literature.
Related MCP Servers
- AlicenseAqualityAmaintenanceUnified MCP server providing LLMs with reliable lookup access to ICD-11, LOINC, RxNorm, MeSH, ATC, CID-10, and (optionally) SNOMED CT.31133 npm12MIT
- AlicenseNot gradedqualityAmaintenanceEnables querying ClinGen curated evidence for gene-disease validity, dosage, actionability, and variant pathogenicity via MCP tools.MIT
- AlicenseAqualityAmaintenanceMCP server that provides tools to query harmonized gene-disease validity data from the Gene Curation Coalition, supporting consensus and conflict detection for gene-disease assertions.12MIT
- AlicenseNot gradedqualityAmaintenanceRead-only biomedical MCP server connecting PubMed, ClinicalTrials.gov, ClinVar, gnomAD, OncoKB, Reactome, KEGG, UniProt, PharmGKB, CPIC, OpenFDA, Monarch Initiative, GWAS Catalog, and more. One command grammar for all biomedical entities — genes, variants, diseases, drugs, trials, articles, phenotypes, pathways, proteins, diagnostics, and adverse events. 27 tools. Apache-2.0 license.1Apache 2.0