From KEGG MCP Server
Use when the user asks to analyze genes, pathways, compounds, drugs, or metabolic networks using KEGG. Triggers on requests like "find pathways for these genes", "what does this enzyme do", "compare metabolism across species", "drug targets", "pathway enrichment", or any bioinformatics question involving KEGG identifiers (hsa:1234, map00010, C00001, K00001, ec:1.1.1.1).
How this skill is triggered — by the user, by Claude, or both
Slash command
/kegg-mcp-server:kegg-analysisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide the user through structured KEGG database queries using the kegg MCP server tools.
Guide the user through structured KEGG database queries using the kegg MCP server tools.
You have access to 34 KEGG tools via the kegg MCP server. Key categories:
| Category | Tools | Use for |
|---|---|---|
| Pathways | search_pathways, get_pathway_info, get_pathway_genes, get_pathway_compounds, get_pathway_reactions | Finding and exploring metabolic/signaling pathways |
| Genes | search_genes, get_gene_info, get_gene_orthologs | Gene function, cross-species orthologs |
| Compounds | search_compounds, get_compound_info, get_compound_reactions | Metabolites, substrates, products |
| Reactions | search_reactions, get_reaction_info | Biochemical transformations |
| Enzymes | search_enzymes, get_enzyme_info | EC numbers, catalytic activity |
| Diseases | search_diseases, get_disease_info | Disease-gene-drug associations |
| Drugs | search_drugs, get_drug_info, get_drug_interactions | Pharmacology, DDI |
| Orthology | search_ko_entries, get_ko_info | Functional orthologs (KO) |
| Cross-DB | batch_entry_lookup, convert_identifiers, find_related_entries | Bulk queries, ID mapping (UniProt, NCBI, ChEBI) |
| Visualization | render_pathway_ascii | ASCII pathway diagrams |
When the user provides a gene list:
hsa for human, eco for E. coli, sce for yeast)search_genes with the organism to get KEGG gene IDsget_gene_info with detail_level="full" to get pathway associationsget_pathway_info to describe their functionWhen the user asks about a specific pathway:
search_pathways to find the pathway ID if not providedget_pathway_info with detail_level="full" for overviewget_pathway_genes, get_pathway_compounds, get_pathway_reactions for componentsrender_pathway_ascii to visualize topologyWhen comparing metabolism across organisms:
map00010 for glycolysis)get_pathway_info with the organism-specific ID (e.g., hsa00010, eco00010)get_pathway_genes for each organism to list genesget_gene_orthologs for genes of interest to find KO assignmentsWhen investigating a compound or drug:
search_compounds or search_drugs to find the entryget_compound_info or get_drug_info with detail_level="full"get_compound_reactions to find biochemical contextfind_related_entries to cross-link to pathways, enzymes, diseasesget_drug_interactions to screen DDIWhen the user has identifiers from other databases:
convert_identifiers to map between KEGG and external DBs (UniProt, NCBI GeneID, ChEBI, PubChem)batch_entry_lookup for bulk retrieval (up to 50 entries)find_related_entries to traverse links between KEGG databases| Database | Format | Example |
|---|---|---|
| Pathway | map{5digits} or {org}{5digits} | map00010, hsa00010 |
| Gene | {org}:{id} | hsa:1956, eco:b0002 |
| Compound | C{5digits} | C00001 (water), C00002 (ATP) |
| Reaction | R{5digits} | R00756 |
| Enzyme | ec:{EC number} | ec:1.1.1.1 |
| KO | K{5digits} | K00001 |
| Drug | D{5digits} | D00001 |
| Disease | H{5digits} | H00004 |
| Module | M{5digits} | M00001 |
| Glycan | G{5digits} | G00001 |
| Code | Organism |
|---|---|
hsa | Homo sapiens (human) |
mmu | Mus musculus (mouse) |
eco | Escherichia coli K-12 |
sce | Saccharomyces cerevisiae (yeast) |
ath | Arabidopsis thaliana |
dme | Drosophila melanogaster |
Use list_organisms to find any organism code.
detail_level="summary" (default) to keep responses concise; switch to "full" when the user needs complete detailsbatch_entry_lookup instead of individual calls when fetching 3+ entriesrender_pathway_ascii in grid mode shows spatial relationships; chain mode shows linear flowfind_related_entries to traverse in either directionGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub lucas-servi/kegg-mcp-server-python --plugin kegg-mcp-server