Hpo Link
БесплатноНе проверенMCP server that provides tools for querying the Human Phenotype Ontology (HPO) including term lookup, hierarchy exploration, cross-ontology mappings, and gene-p
Описание
MCP server that provides tools for querying the Human Phenotype Ontology (HPO) including term lookup, hierarchy exploration, cross-ontology mappings, and gene-phenotype-disease associations, all grounded in a local SQLite database for fast offline lookups.
README
Python 3.12+ CI Conformance License: MIT
An MCP server (Streamable HTTP or stdio) that grounds phenotype work in the
Human Phenotype Ontology (HPO): term lookup, the is_a
hierarchy, cross-ontology mapping, and gene↔phenotype↔disease associations, served
read-only from a local index of the HPO release and its HPOA annotations.
[!IMPORTANT] Research use only. Not clinical decision support. Do not use for diagnosis, treatment, triage, or patient management.
Why
HPO ships as bulk artifacts — an OBO/JSON ontology graph (hp.json) and a flat
annotation table (phenotype.hpoa). Neither answers a question. "Which genes are
annotated to seizure, including its subtypes?" needs the transitive is_a closure over
a multi-parent DAG, a synonym/xref index to get from free text to HP:0001250, and a
join against HPOA — plumbing every consumer otherwise rebuilds, badly.
hpo-link builds that once into a read-only SQLite index (closure table, FTS over
names/synonyms/definitions, xrefs ranked by mapping predicate) and serves it as MCP
tools. No upstream call sits in the request path, so lookups are offline and
deterministic, and every response cites the HPO id and the HPO release it came from.
Quick start
Hosted — no install:
claude mcp add --transport http hpo-link https://hpo-link.genefoundry.org/mcp
Local (Python 3.12+, uv):
uv sync --group dev # install
make data # REQUIRED: download HPO + HPOA and build the local database
make data-status # loaded HPO release + counts
make dev # unified REST + MCP on http://127.0.0.1:8000 (/mcp, /health)
There is no data until make data (uv run hpo-link-data build) has run once.
claude mcp add --transport http hpo-link --scope user http://127.0.0.1:8000/mcp
make mcp-serve # stdio instead, for Claude Desktop (stdout is the protocol)
Three console scripts: hpo-link (unified server), hpo-link-mcp (stdio),
hpo-link-data (build / refresh / status for data authoring, and
materialize-data for the hardened deployment init sidecar).
Tools
| Tool | Purpose |
|---|---|
get_server_capabilities |
Discovery surface — tools, workflows, error taxonomy, limits |
get_diagnostics |
Database status, loaded HPO release, counts |
resolve_term |
Label, synonym, HP id or xref → one canonical term + match_type |
search_terms |
Full-text search over names, synonyms and definitions |
get_term |
The record — definition, synonyms, grouped xrefs, parents/children, obsolescence |
get_term_ancestors |
Transitive is_a ancestors |
get_term_descendants |
Transitive is_a descendants — a phenotype and all its subtypes |
get_term_parents |
Direct is_a parents |
get_term_children |
Direct is_a children |
resolve_xref |
External CURIE (UMLS:, SNOMEDCT_US:, ORPHA:, …) → HP ids, ranked by predicate |
map_cross_ontology |
An HP term → its mappings, grouped by target prefix |
get_phenotypes_for_gene |
HPO terms annotated to a gene |
get_genes_for_phenotype |
Genes annotated to an HPO term |
get_phenotypes_for_disease |
HPO terms annotated to a disease |
get_diseases_for_phenotype |
Diseases annotated to an HPO term |
get_genes_for_disease |
Genes associated with a disease |
get_diseases_for_gene |
Diseases associated with a gene |
Every response carries _meta.next_commands (ready-to-call follow-ups). Ids are
normalised to HP:NNNNNNN. response_mode ∈ minimal | compact | standard | full
(default compact) trades detail for tokens. Worked examples: docs/usage.md.
Leaf names are unprefixed per
Tool-Naming Standard v1
(serverInfo.name = hpo-link); behind
genefoundry-router the gateway applies
the canonical namespace token hpo, so they surface as hpo_<tool> — e.g.
hpo_resolve_term.
Data & provenance
Built from two upstream artifacts: the HPO ontology (hp.json, via the OBO PURL
http://purl.obolibrary.org/obo/hp.json) and the HPOA annotations
(phenotype.hpoa), which link HPO terms to OMIM / Orphanet / DECIPHER diseases and,
derived from those, to genes.
Local data authoring can refresh from upstream with conditional GET (ETag /
Last-Modified), but deployed servers do not. Production uses the immutable,
digest-pinned release declared in container-release.json: hpo-data-init
materializes it before the application starts, then the application reads the
selected snapshot only. Details: docs/data.md.
Data licence: HPO is distributed under a custom licence for research and educational use (https://hpo.jax.org/app/license) — attribution required.
Cite: Köhler S, Gargano M, Matentzoglu N, et al. The Human Phenotype Ontology in 2021. Nucleic Acids Research 2021;49(D1):D1207–D1217. doi:10.1093/nar/gkaa1043. For the most recent release cite instead: Gargano MA, Matentzoglu N, Coleman B, et al. The Human Phenotype Ontology in 2024: phenotypes around the world. Nucleic Acids Research 2024;52(D1):D1333–D1346. doi:10.1093/nar/gkad1005.
Documentation
- Usage — per-tool examples, the citation contract, typical workflows.
- Architecture — the two planes, ingest pipeline, SQLite schema, request lifecycle.
- Data & provenance — sources, freshness, build integrity, prebuilt artifacts, licence.
- Configuration — every
HPO_LINK_*variable and the Host/Origin/CORS allowlists. - Deployment — Docker init sidecar, health and deploy verification.
- AGENTS.md — engineering conventions, invariants, definition of done.
Contributing
See AGENTS.md for the invariants and conventions. make ci-local is the
definition-of-done gate: format, lint, line budget, README standard, mypy, and tests.
Write the failing test first.
License
MIT © Bernt Popp — code only. The HPO data is licensed separately for research and educational use with required attribution (https://hpo.jax.org/app/license); see Data & provenance.
Установка Hpo Link
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/berntpopp/hpo-linkFAQ
Hpo Link MCP бесплатный?
Да, Hpo Link MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Hpo Link?
Нет, Hpo Link работает без API-ключей и переменных окружения.
Hpo Link — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Hpo Link в Claude Desktop, Claude Code или Cursor?
Открой Hpo Link на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolRedis
Interact with Redis key-value stores.
автор: modelcontextprotocolSQLite
Database interaction and business intelligence capabilities.
автор: modelcontextprotocolmxcp
Open-source framework for building enterprise-grade MCP servers using just YAML, SQL, and Python, with built-in auth, monitoring, ETL and policy enforcement.
автор: raw-labstadas-github/a2asearch-mcp
MCP server to search 4,800+ MCP servers, AI agents, CLI tools and agent skills. Install: npx -y a2asearch-mcp. Ask Claude: "Find MCP servers for database access
автор: tadas-githubjulien040/anyquery
Query more than 40 apps with one binary using SQL. It can also connect to your PostgreSQL, MySQL, or SQLite compatible database. Local-first and private by desi
автор: julien040drakonkat/wizzy-mcp-tmdb
A MCP server for The Movie Database API that enables AI assistants to search and retrieve movie, TV show, and person information.
автор: drakonkatCompare Hpo Link with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
