DBCLS
DBCLS Β· Life Sciences

TogoMCP

Model Context Protocol Server for Life Sciences Research

MCP Server Endpoint
https://togomcp.rdfportal.org/mcp

Summary

TogoMCP is a comprehensive Model Context Protocol (MCP) server developed by DBCLS that provides LLM agents with seamless access to a vast ecosystem of life sciences databases. It integrates over 30 major biological and biomedical databases, enabling AI assistants like Claude, ChatGPT, and Gemini to help researchers query, explore, and integrate complex biological data using natural language.

Through SPARQL queries, RDF data exploration, and ID conversion services, TogoMCP bridges the gap between AI assistants and the rich data landscape of life sciences. Whether you're a biologist exploring disease–protein associations, a chemist searching for drug candidates, or a data scientist integrating information across multiple domains, TogoMCP provides a powerful toolkit for knowledge discovery.

πŸ”¬ Multi-Database Access

Query proteins, genes, chemicals, diseases, pathways, and more across 20+ integrated databases including UniProt, PubChem, ChEMBL, PDB, Reactome, ClinVar, and others β€” all through a single MCP endpoint.

🌐 SPARQL & RDF-Based

Built on Semantic Web technologies. TogoMCP exposes SPARQL endpoints from the RDF Portal, enabling precise, structured queries with rich cross-references between datasets.

πŸ”— ID Conversion

Powered by TogoID, the server converts identifiers across 65+ biological databases β€” including cross-category conversions (e.g., disease IDs β†’ gene IDs) with semantic relationship annotations.

πŸ€– AI-Ready

Designed for integration with LLM-based assistants. Compatible with Claude Desktop, ChatGPT, and Antigravity (formerly Gemini CLI). No bioinformatics expertise required β€” use natural language to explore data.

What's New

Recent user-facing updates β€” new databases, tools, and capability changes. See the full changelog for the complete history.

Full changelog β†’

Publications

TogoMCP is described in the following papers. Please cite the system paper if you use TogoMCP in your research.

Kinjo, A. R., Yamamoto, Y., Bustamante-Larriet, S., Labra-Gayo, J.-E., & Fujisawa, T. (2026). TogoMCP: Natural Language Querying of Life-Science Knowledge Graphs via Schema-Guided LLMs and the Model Context Protocol. Database 2026:baag042. https://doi.org/10.1093/database/baag042

Kinjo, A. R., & Yamamoto, Y. (2026). Measure before you rewrite: ablation-driven redesign of LLM-facing RDF schema documentation in TogoMCP. BioHackrXiv. https://doi.org/10.37044/osf.io/6v5ra_v1

The second report measures what the per-database schema documents (MIE files) actually contribute to answer quality. Removing any single MIE section — or any whole functional group — is statistically null, while removing the MIE entirely costs 0.9 points out of 20; the query-construction content alone recovers 99% of that effect. MIE v3, the format now served by this server, was reorganized around that evidence: same answer quality over 100 benchmark questions, 15% fewer input tokens, 6% faster.

Usage Examples

The following examples illustrate how AI assistants powered by TogoMCP can tackle complex life sciences research questions by orchestrating queries across multiple databases.

1

CVD Protein Targets & Small Molecule Inhibitors

Prompt Find proteins that are associated with both cardiovascular diseases and have known small molecule inhibitors in ChEMBL, and classify them according to disease and drug availability.

Response

The system loaded the ChEMBL schema via get_MIE_file, ran parallel target searches across CVD areas (RAAS, coagulation, lipid pathways, ion channels), then issued comprehensive SPARQL queries against the EBI endpoint to retrieve approved (Phase 4) inhibitors anchored on MeSH disease IRIs (cco:hasMesh) and human single-protein targets. It used TogoID to bridge ChEMBL target IDs to UniProt accessions and compiled an interactive classification dashboard.

Tools Used

TogoMCP_Usage_Guide get_MIE_file search_chembl_target run_sparql togoid_convertId

Key Results

  • 18 human protein targets confirmed with approved inhibitors across 6 CVD disease categories (dyslipidemia, hypertension, heart failure, thrombosis, stroke, arrhythmia)
  • ACE (P12821) has the largest number of distinct approved drug molecules β€” 12 ACE inhibitors
  • SLC12A3/NCC (P55017) has the broadest chemical diversity β€” 8+ thiazide diuretics
  • HMGCR (P04035) β€” the highest-profile target; statins remain the most prescribed CV drugs globally
  • SGLT2 (P31639) and Neprilysin (P08473) represent the most impactful recent heart-failure approvals
  • Factor Xa (P00742) inhibitors have largely supplanted warfarin (VKORC1) for AF-related stroke prevention
  • PCSK9 (Q8NBP7) and ANGPTL3 (Q9Y5C1) are the newest lipid-lowering targets, using mAb / siRNA mechanisms
2

Human Enzyme Distribution by EC Class

Prompt Determine the distribution of human enzymes by their EC number classes.

Response

The system loaded the UniProt MIE to confirm the up:enzyme predicate and the mandatory up:reviewed 1 filter, then ran a single aggregating SPARQL query against the SIB endpoint, anchored on up:organism <…/taxonomy/9606>. EC class was extracted from the enzyme IRI by stripping the prefix and taking the first digit before the dot, giving counts of unique protein–EC-class associations across all seven EC classes.

Tools Used

get_MIE_file run_sparql

Key Results

  • 4,652 unique human protein–EC-class associations from UniProt Swiss-Prot (counts reflect associations, not unique proteins β€” bifunctional enzymes carry >1 EC number)
  • EC 2 – Transferases: 1,832 (39.4%) β€” kinases, methyltransferases, glycosyltransferases, acetyltransferases
  • EC 3 – Hydrolases: 1,732 (37.2%) β€” proteases, phosphatases, lipases, nucleases
  • EC 1 – Oxidoreductases: 546 (11.7%) β€” cytochrome P450s, dehydrogenases, peroxidases
  • EC 4 Lyases (155, 3.3%); EC 5 Isomerases (160, 3.4%); EC 6 Ligases (124, 2.7%); EC 7 Translocases (103, 2.2%)
  • EC 2 + EC 3 β‰ˆ 77% β€” characteristic metazoan signature, reflecting the dominance of phosphorylation and proteolytic processing in human signalling
3

Comparative Chemical Analysis: Natural Products vs Synthetic Compounds

Prompt Use ChEBI (chemical classification) + ChEMBL (bioactivity) + PubChem (chemical descriptors) to compare the bioactivity profiles and chemical diversity of natural products versus synthetic compounds across different therapeutic areas.

Response

The system loaded the MIEs for ChEBI, ChEMBL, and PubChem, then ran five SPARQL queries: ChEBI biological roles under the CHEBI:33245 natural-product hierarchy via OWL restrictions; ChEMBL approved-drug counts grouped by ATC therapeutic area; PubChem MW distribution for FDA-approved drugs (via the sio:SIO_000008 hub-and-spoke pattern); a cross-graph ChEMBL Γ— ChEBI join confirming NP-derived approved drugs; and a NP pharmacological-role query with mass statistics. Results were synthesised into an interactive dashboard.

Tools Used

TogoMCP_Usage_Guide get_MIE_file run_sparql

Key Results

  • ATC distribution of approved drugs in ChEMBL: N (Nervous, 320) > L (Antineoplastic, 236) > J (Anti-infectives, 225) > A (Alimentary/Metabolism, 219) > C (Cardiovascular, 211)
  • Estimated NP-derived fraction by therapeutic area: J ~65% (Ξ²-lactams, macrolides), P ~55% (artemisinin, avermectin), L ~48% (taxol, vincristine), C ~25% (digoxin, lovastatin), N ~5% (BBB constraints rule out high-MW / high-TPSA NPs)
  • Physicochemical fingerprint β€” NP vs synthetic: MW ~580 vs ~320 Da; stereocenters ~6.2 vs 1.8; TPSA ~148 vs 82 Γ…Β²; XLogP3 ~1.8 vs 3.2 β€” NPs occupy a higher-MW, more stereorich, more polar region of chemical space
  • FDA-approved drug MW distribution (PubChem): 300–500 Da bucket dominates (2,672 drugs); the >500 Da tail (2,081 drugs) is disproportionately populated by NP-derived macrolides, terpenoids, and polyketides
  • Cross-database coverage gap: only ~35K of ChEMBL's 1.9M molecules carry a ChEBI xref, so the RDF-confirmed NP count is a strict lower bound β€” literature estimates fill the gap

Setup Guide

Connect TogoMCP to your AI assistant in minutes. Choose your platform below.

Method 1: Custom Connectors (recommended β€” every plan)

Available on Claude, Claude Desktop and Cowork, on all plans β€” Free, Pro, Max, Team and Enterprise. Free accounts may add one custom connector; the paid plans have no cap.

  1. Open Claude and navigate to Settings β†’ Customize β†’ Connectors.
  2. Click "+", then "Add custom connector".
  3. Enter the MCP server URL: https://togomcp.rdfportal.org/mcp
  4. Click "Add" to complete the setup.
  5. In your chat interface, click the "+" button and select Connectors to enable it for the conversation.

Team and Enterprise take an extra step first: an owner adds it organization-wide via Organization settings β†’ Connectors β†’ Add, hovering Custom and choosing Web. Members then connect it themselves under Customize β†’ Connectors. Individual members cannot add a custom connector until the owner has done this.

Method 2: JSON Configuration (optional β€” Claude Desktop only)

Method 1 covers every plan, so this is rarely needed. It runs a local bridge (mcp-remote) that presents TogoMCP as a local server β€” useful if custom connectors are unavailable to you. It is a community tool, not an Anthropic-documented path; claude_desktop_config.json is otherwise for genuinely local MCP servers.

  1. Navigate to Settings β†’ Developer β†’ Edit Config. This opens claude_desktop_config.json.
  2. Add the following configuration:
{
  "mcpServers": {
    "togomcp": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://togomcp.rdfportal.org/mcp"]
    }
  }
}
  1. Save the file and restart Claude Desktop.
ℹ️ For more details, see the Claude custom connectors documentation.

ChatGPT β€” Developer Mode (Business, Enterprise, Edu, or Pro)

Custom MCP connectors run in ChatGPT's Developer Mode, on the web only β€” there is no mobile support. This is a beta, and what each plan may do differs:

  • Business / Enterprise / Edu β€” full MCP, including write actions. An admin or owner must enable developer mode and then publish the app to the workspace.
  • Pro β€” read/fetch connectors only. That is enough for TogoMCP (see below).
  • Plus β€” custom MCP connectors are not available.

TogoMCP needs only read access. Every tool it exposes is a query, search, or ID conversion β€” it never writes to a database, and all 29 declare readOnlyHint in the protocol. So the read/fetch-only restriction on Pro does not limit TogoMCP: it runs in full.

  1. Enable Developer Mode: go to Settings β†’ Apps β†’ Advanced settings and turn on Developer mode. (On Business, only admins/owners can do this, each for themselves; on Enterprise/Edu an admin must first grant access under Workspace Settings β†’ Permissions & Roles β†’ Connected Data.)
  2. Go to Apps β†’ Create to add a custom connector.
  3. Enter the following details:
    • Connector name: TogoMCP
    • MCP Server URL: https://togomcp.rdfportal.org/mcp
    • Description: Access to life sciences databases via TogoMCP
  4. Click Scan Tools, wait for the scan to finish, then click Create.
  5. Business / Enterprise / Edu only: the app is created as a draft. An admin or owner must publish it from Workspace Settings β†’ Apps β†’ Drafts before the workspace can use it.
  6. In your chat, select TogoMCP from the tools menu (or name it in your prompt).
ℹ️ Developer mode shows tool usage explicitly and asks for confirmation before write actions β€” TogoMCP performs none, and declares itself read-only so ChatGPT need not prompt. See OpenAI's Developer mode and MCP apps for current plan eligibility and admin controls.
⚠️ Refresh the connector after TogoMCP adds tools. ChatGPT records the tool list at Scan Tools time and does not refetch it on its own, so tools added later stay invisible to it β€” we still see connectors running lists several months old. Symptoms: ChatGPT reports that a tool documented here is unavailable, or it calls a tool that no longer exists (find_databases, ncbi_ncbi_esearch) and the call fails. Fix: re-run Scan Tools on the connector, or remove and re-add it. New databases need no refresh β€” the database catalog is delivered by TogoMCP_Usage_Guide at query time, so it is always current.

Antigravity CLI β€” Streamable HTTP Configuration

Gemini CLI was retired on 18 June 2026 for the free tier, Google AI Pro, Ultra and Google One, and replaced by Antigravity CLI. If that is you, use the Antigravity configuration below β€” the old Gemini CLI settings will not work. (Gemini Code Assist Standard/Enterprise, Google Cloud access, and paid Gemini API keys keep Gemini CLI; see the note at the end.)

Edit ~/.gemini/config/mcp_config.json (or .agents/mcp_config.json in a project):

{
  "mcpServers": {
    "togomcp": {
      "serverUrl": "https://togomcp.rdfportal.org/mcp"
    }
  }
}

The field is serverUrl. Antigravity does not accept the older httpUrl or url keys β€” a config using them silently fails to connect.

Save the file, then type /mcp in the Antigravity CLI prompt to open the MCP Manager and reload. In the Antigravity IDE, use MCP Servers in the agent side panel instead.

ℹ️ Config reference: Antigravity MCP documentation. Still on Gemini CLI via a paid/enterprise path? It uses a different file and key β€” ~/.gemini/settings.json with "httpUrl" instead of "serverUrl"; see the Gemini CLI MCP docs. Either way TogoMCP is Streamable HTTP, not SSE.

Next step: the TogoMCP Tutorial

Connected? The self-study tutorial takes you from your first question to results you can defend in a paper — nine chapters and an appendix on how the server works, how to ask a question that a database can actually answer, and how to tell a real answer from a plausible one, plus exercises with worked solutions. Written for life-science researchers; no RDF or SPARQL background assumed.

Available Databases

TogoMCP integrates over 30 major life sciences databases, covering proteins, genes, chemicals, diseases, pathways, taxonomy, and more.

UniProt
Comprehensive protein sequence and functional information. 444M+ proteins with curated Swiss-Prot entries, cross-references to 200+ databases, sequences, domains, and functions.
PubChem
Public chemical database with 119M compounds, 1.7M bioassays, molecular descriptors, bioactivity data, and links to genes, proteins, pathways, and diseases.
ChEMBL
Manually curated database of bioactive molecules with 2.4M+ compounds, 20M bioactivity measurements, and compound–target–activity data for drug discovery.
PDB (Protein Data Bank)
3D structural data for 204K+ protein and nucleic acid structures from X-ray crystallography, NMR, and cryo-EM. Linked to UniProt and EMDB.
jPOST
Curated proteomics repository of reanalysed mass-spectrometry submissions: 598 projects bundling 1M+ identified Proteins (linked to UniProt), 3.7M Peptides, 10M+ PSMs, and PTMs typed against Unimod and PSI-MS.
ChEBI
Chemical Entities of Biological Interest ontology with 217,000+ entities. Hierarchical classification of small molecules, atoms, ions, functional groups, and biological roles.
MassBank
Open repository of reference mass spectra for small molecules β€” 117,000+ spectra covering 17,900+ distinct compounds (metabolites, drugs, environmental chemicals), each linking a peak list and analytical conditions to chemical structure and literature.
IDSM (Integrated Database of Small Molecules)
Chemical structure search β€” substructure, similarity and exact β€” over nine small-molecule datasets (PubChem, ChEMBL, ChEBI, Wikidata, DrugBank, PDB-CCD, MolMeDB, MoNA, ISDB). A single SMILES returns the molecule's identifier in every dataset at once.
Reactome
Curated knowledgebase of 22,000+ biological pathways across 30+ species, covering molecular interactions, biochemical reactions, complexes, and disease associations.
WikiPathways
Community-curated pathway diagrams: 2,087 pathways across 39 organisms, with gene-product, protein and metabolite nodes, signed interactions (inhibition, stimulation, catalysis), Pathway and Disease Ontology tags, and cross-references to UniProt, Ensembl, NCBI Gene and ChEBI.
Rhea
Expert-curated database of 17,078 atom-balanced biochemical reactions, linked to ChEBI compounds, EC numbers, and metabolic pathway databases.
BRENDA
Manually curated enzyme database covering enzymes classified by EC number across organisms, with substrates, products, inhibitors, activators, cofactors, tissue expression, and subcellular localization.
Gene Ontology (GO)
Controlled vocabulary for gene and gene product attributes across all organisms, covering biological processes, molecular functions, and cellular components.
Ensembl
Comprehensive genome annotations for 100+ species including genes, transcripts, proteins, and exons. Cross-referenced to UniProt, HGNC, and OMIM.
NCBI Gene
Gene database with 57M+ entries covering protein-coding genes, ncRNAs, and pseudogenes across all organisms, with chromosomal locations and orthology data.
HGNC
HUGO Gene Nomenclature Committee β€” the authoritative source for approved human gene symbols and names, with chromosomal locations and cross-references to NCBI Gene, Ensembl, UniProt, OMIM, and dozens more.
OMA
Orthologous MAtrix β€” phylogenomics-based ortholog and paralog inference covering 17.4M proteins from 2,927 species, organized into Hierarchical Orthologous Groups (HOGs) for comparative genomics and gene family analysis.
Bgee
Curated gene expression database integrating RNA-Seq, Affymetrix, EST, and in situ hybridization data across animal species, with calls tagged by anatomy (UBERON), developmental stage, sex, and strain for cross-species expression comparison.
HCO (Human Chromosome Ontology)
Ontology of the human cytogenetic map: every Giemsa-stained cytoband (ISCN nomenclature such as 13q14.2) with its GRCh37 and GRCh38 coordinates, stain type, and RefSeq/INSDC/Ensembl/UCSC chromosome accessions. 862 cytoband classes and 25 chromosomes across ~25,600 triples.
MCO (Mouse Chromosome Ontology)
The mouse counterpart of HCO: the Mus musculus chromosome set (1-19, X, Y, MT) with per-build instances on GRCm38 and GRCm39 carrying chromosome lengths and RefSeq/INSDC/Ensembl/UCSC cross-references. Whole-chromosome only β€” the canonical source of mouse-chromosome IRIs.
MoG+ (Mouse Genomes plus)
Genome-wide sequence variation across 62 inbred and wild-derived mouse strains on the GRCm39 assembly: ~146M variants (SNVs and indels) with per-strain genotypes, Ensembl VEP and SnpEff functional consequences, and Ensembl gene-overlap links.
Fanta.bio
Cis-regulatory elements defined from CAGE transcription-start activity in human (GRCh38) and mouse (GRCm38): 821,722 promoter- and enhancer-level CREs with coordinates, transcription directionality, linked genes, nearby transcript TSSs, and overlapping ChIP-Atlas transcription-factor peaks, ENCODE SCREEN cCREs, FANTOM5 CAGE peaks/enhancers and refTSS.
GWAS Catalog
NHGRI-EBI catalog of published genome-wide association studies: 955,930 SNP–trait associations (801,096 at genome-wide significance) across 89,981 studies and 444,106 SNPs, with p-values, effect sizes, risk alleles, mapped genes, and 11,017 EFO trait terms joinable to the co-hosted EFO ontology.
TogoVar
Integrated human genome variation database (GRCh38): ~390M variants (SNV, deletion, insertion, MNV, indel) with normalized/VCF coordinates, Ensembl-VEP consequences (SIFT/PolyPhen/AlphaMissense, HGVS), dbSNP and HGNC/Ensembl gene links, and an embedded ClinVar annotation layer. Per-population allele frequencies are served via the TogoVar REST API tools.
ClinVar
Aggregates genomic variation and health relationships. 3.5M+ variant records with clinical interpretations, gene associations, and disease conditions.
MedGen
NCBI's portal for medical genetics with 233,000+ clinical concepts covering diseases, phenotypes, and clinical findings. Integrates OMIM, Orphanet, HPO, and MONDO.
MONDO
Monarch Disease Ontology integrating multiple disease databases into unified classification with cross-references to OMIM, Orphanet, DOID, MESH, ICD, and 35+ databases.
MeSH
NLM's Medical Subject Headings β€” controlled vocabulary for biomedical literature indexing, with hierarchical descriptors and qualifiers across 16 main categories.
Ontology Graphs
Cross-ontology term resolution and hierarchy expansion over 37 ontology graphs β€” 785,551 classes covering HP, UBERON, CL, SO, ECO, EFO, PRO and FMA. Resolves opaque IRIs to labels and expands subtrees for joins against co-located data.
NCBI Taxonomy
Biological taxonomic classification covering 3M+ organisms from bacteria to mammals, with hierarchical relationships, scientific names, and genetic code assignments.
PubMed
Bibliographic information for biomedical literature from MEDLINE, including publication metadata, abstracts, authors, and MeSH annotations.
PubTator
Biomedical entity annotations extracted from PubMed using text mining. Disease and Gene annotations linked to articles for literature-based knowledge discovery.
BacDive
Bacterial Diversity Metadatabase with 97,000+ strain records covering taxonomy, morphology, physiology, and molecular data for bacteria and archaea.
MediaDive
Culture media database from DSMZ with 3,289 standardized recipes for bacteria, archaea, fungi, and microalgae, including ingredients and growth conditions.
NANDO
Japanese intractable (rare) disease ontology with 2,777 disease classes, multilingual labels, and cross-references to international disease ontologies.
DDBJ
DNA Data Bank of Japan: nucleotide sequences with genomic annotations, organism metadata, taxonomic classification, and functional annotations.
GlyCosmos
Glycoscience portal spanning glycan structures, glycoproteins, glycosylation sites, and glycogenes, extended with DOID-keyed disease–gene associations (4,372 diseases) and Gene Ontology annotations linked internally to glycoproteins.
AMR Portal
Antimicrobial resistance surveillance data with 1.7M+ phenotypic susceptibility tests and 1.1M+ genotypic AMR features from bacterial isolates worldwide.

Available Tools

TogoMCP exposes a rich set of tools for searching, querying, and converting life sciences data.

πŸ“‹ Database & Information
TogoMCP_Usage_Guide
Get the usage guide with the database catalog and the recommended query workflow. Call this first, before any other tool.
get_MIE_file
Get metadata file containing ShEx schema and SPARQL examples for a specific database. Use this first before writing queries.
get_sparql_endpoints
Retrieve available SPARQL endpoints from the RDF Portal.
get_graph_list
List named graphs available in a given database.
πŸ” Keyword Search Tools
search_uniprot_entity
Search UniProt proteins by name, description, or disease association.
search_chembl_molecule
Search ChEMBL molecules and bioactive compounds.
search_chembl_target
Search ChEMBL protein targets and drug targets.
search_chembl_id_lookup
Resolve a name to ChEMBL IDs across compounds, targets, cell lines, and tissues (plus keyword search of assay descriptions).
search_pdb_entity
Search PDBj structures, ligands, and peptides β€” filter by method, resolution, organism, or chemical structure.
search_reactome_entity
Search Reactome pathways and biological reactions.
search_rhea_entity
Search Rhea biochemical reactions by keyword.
search_mesh_descriptor
Search MeSH medical concepts, descriptors, and controlled vocabulary terms.
⚑ SPARQL Query
run_sparql
Execute custom SPARQL queries on any RDF database in the portal. For best results, use get_MIE_file first to understand the database schema and available properties.
πŸ”„ ID Conversion (TogoID)
togoid_convertId
Convert identifiers between databases (e.g., UniProt to ChEMBL, PubChem to ChEBI).
togoid_countId
Count how many IDs can be converted between two databases.
togoid_identifyId
Resolve a bare accession (e.g. AEK21611) to the TogoID dataset key it belongs to, so you never have to guess a key for a conversion route.
togoid_getAllDataset
Get configuration for all available datasets in TogoID.
togoid_getDataset
Get configuration details for a specific TogoID dataset.
togoid_getAllRelation
Get all possible conversion relationships between databases.
togoid_getRelation
Get relationship details between two specific databases.
🧬 NCBI E-utilities
ncbi_esearch
Search NCBI databases (Gene, Taxonomy, ClinVar, MedGen, PubMed, PubChem) using NCBI field tags.
ncbi_esummary
Get summary information for NCBI IDs retrieved via esearch.
ncbi_efetch
Fetch full records (sequences, data, etc.) for NCBI IDs.
ncbi_list_databases
List all supported NCBI databases with descriptions and example queries.
πŸ§ͺ PubChem-specific
get_pubchem_compound_id
Look up a PubChem compound ID from a compound name.
get_compound_attributes_from_pubchem
Retrieve detailed compound attributes and molecular descriptors from PubChem RDF.
🧬 Genomic Variation (TogoVar)
togovar_search_variant
Search human genome variants with population allele frequencies (gnomAD, ToMMo, JGA, BioBank Japan), ClinVar/MGeND significance, and SIFT/PolyPhen/AlphaMissense predictions.
togovar_search_gene
Resolve a gene symbol to its HGNC ID for variant search.
togovar_search_disease
Resolve a disease name to MONDO / MedGen IDs for variant search.

Other MCP Servers

TogoMCP works excellently in combination with these complementary MCP servers for richer research workflows.

PubDictionaries MCP Server

PubDictionaries provides text annotation services for biomedical literature, helping identify and map biological entities such as genes, proteins, diseases, and chemicals in text.

Use Case: Annotate research papers to extract entity mentions, then use TogoMCP to retrieve comprehensive data about those entities from UniProt, ChEMBL, or other databases.

PubMed MCP Server

The PubMed MCP server provides access to the world's largest biomedical literature database, enabling article search, metadata retrieval, and full-text access from PubMed Central.

Use Case: Search PubMed for relevant literature, then use TogoMCP to retrieve detailed molecular and pathway information about entities mentioned in those papers.

OLS4 MCP Server

The Ontology Lookup Service (OLS4) from EMBL-EBI provides access to biomedical ontologies, enabling standardization of terminology and exploration of hierarchical relationships between biological concepts.

Use Case: Explore ontology terms and their relationships in OLS4, then query TogoMCP using standardized ontology identifiers for precise data retrieval.

Related Resources

Explore the ecosystem of tools and organizations behind TogoMCP.

RDF Portal

https://rdfportal.org

The NBDC RDF Portal is a comprehensive repository of semantic life sciences data developed by DBCLS and NBDC. It hosts 21+ RDF datasets comprising over 45.5 billion triples, all quality-reviewed for interoperability and SPARQL queryability. TogoMCP's SPARQL queries run against this portal's unified endpoint.

TogoID

https://togoid.dbcls.jp

TogoID is an identifier conversion service by DBCLS that bridges 65+ life science databases. Unlike traditional converters, it supports cross-category conversions (e.g., disease IDs β†’ gene IDs) with semantic relationship annotations. TogoMCP's ID conversion tools are powered by TogoID's API.

TogoVar

https://grch38.togovar.org/

TogoVar is an NBDC/DBCLS integrated database of human genomic variation. It aggregates allele frequencies from Japanese and global cohorts (ToMMo, JGA, GEM-J, NCBN, BioBank Japan, gnomAD) with ClinVar and MGeND clinical significance and functional predictions. TogoMCP's genomic-variation tools query TogoVar's REST API.

DBCLS

https://dbcls.rois.ac.jp/en/

The Database Center for Life Science (DBCLS) is a Japanese research institute under ROIS, founded in 2007. It conducts research on database integration, Semantic Web technologies, and bioinformatics resources. DBCLS organizes the annual BioHackathon and monthly SPARQLthon events, and develops tools like TogoID, TogoTV, and TogoMCP.

Source Code

dbcls/togomcp

The TogoMCP source code is open and available on GitHub. Contributions, bug reports, and feature requests are welcome.

https://github.com/dbcls/togomcp