用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill metabolomics命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
基于 SOC 职业分类
正在显示 SKILL.md
| name | metabolomics |
| description | ToolUniverse workflow — Metabolomics |
| source | https://github.com/mims-harvard/ToolUniverse/tree/main/skills/tooluniverse-metabolomics |
| metadata | null |
Comprehensive metabolomics research skill that identifies metabolites, analyzes studies, and searches metabolomics databases. Generates structured research reports with annotated metabolite information, study details, and database statistics.
Use this skill when asked to:
Example queries:
Primary metabolite databases:
The skill executes a 4-phase analysis pipeline:
For each metabolite in the input list:
For provided study IDs:
For keyword searches:
Always included in reports:
Input:
Output report includes:
Input:
Output report includes:
Input:
Output report includes:
Input:
Output report includes:
List of metabolite names to identify and annotate.
["glucose"], ["lactate", "pyruvate", "acetate"]MetaboLights or Metabolomics Workbench study identifier.
"MTBLS1", "ST000001"Keyword to search metabolomics studies.
"diabetes", "glucose metabolism", "LC-MS"Target organism for study filtering.
"Homo sapiens""Mus musculus", "Saccharomyces cerevisiae"Path for the generated markdown report.
"my_analysis.md", "metabolomics_report.md"All analyses generate a structured markdown report with:
Header section:
Phase sections:
Database overview:
Error handling:
HMDB tools are SOAP-based and require special parameter handling:
HMDB_search: Requires operation="search" parameterHMDB_get_metabolite: Requires operation="get_metabolite" parameterendpoint or method parameters (not applicable to SOAP)Tools return different response formats - handle all three:
{status: "success", data: [...], metadata: {...}}[...] (e.g., metabolights_list_studies){field1: ..., field2: ...} (e.g., some detail endpoints)Always check response type with isinstance() before accessing fields.
Follow this hierarchy for robustness:
Write report incrementally to avoid memory issues:
The skill automatically discovers and uses these tools from ToolUniverse:
HMDB Tools:
HMDB_search: Search metabolites by nameHMDB_get_metabolite: Get detailed metabolite informationMetaboLights Tools:
metabolights_list_studies: List available studiesmetabolights_search_studies: Search studies by keywordmetabolights_get_study: Get study details by IDMetabolomics Workbench Tools:
MetabolomicsWorkbench_get_study: Get study informationMetabolomicsWorkbench_search_compound_by_name: Search compoundsPubChem Tools:
PubChem_get_CID_by_compound_name: Get PubChem CIDPubChem_get_compound_properties_by_CID: Get chemical propertiesNo manual tool configuration required - all tools loaded automatically.
Cause: HMDB search returned empty results or index error accessing first result Solution: This is expected for uncommon metabolites; PubChem fallback will be attempted
Cause: Study ID not found or API unavailable Solution: Verify study ID format (MTBLS* or ST*), check if study is public
Cause: Missing API keys for some databases
Solution: Check .env.template, add required API keys to .env file (most metabolomics tools work without keys)
Cause: Pipeline queries each metabolite individually Solution: Reports limit to first 10 metabolites; consider batching for >20 metabolites
| Tool | Required Parameters | Optional Parameters | Response Format | Notes |
|---|---|---|---|---|
HMDB_search | operation="search", query | - | {status, data: []} | SOAP tool - operation required |
HMDB_get_metabolite | operation="get_metabolite", hmdb_id | - | {status, data: {}} | SOAP tool - operation required |
| Tool | Required Parameters | Optional Parameters | Response Format | Notes |
|---|---|---|---|---|
metabolights_list_studies | - | size (default: 10) | {status, data: []} or [...] | May return direct list |
metabolights_search_studies | query | - | {status, data: []} | Returns study IDs |
metabolights_get_study | study_id | - | {status, data: {}} | Full study metadata |
| Tool | Required Parameters | Optional Parameters | Response Format | Notes |
|---|---|---|---|---|
MetabolomicsWorkbench_get_study | study_id | output_item (default: "summary") | {status, data: {}} | Data may be text |
MetabolomicsWorkbench_search_compound_by_name | compound_name | - | {status, data: {}} | Compound information |
| Tool | Required Parameters | Optional Parameters | Response Format | Notes |
|---|---|---|---|---|
PubChem_get_CID_by_compound_name | compound_name | - | {status, data: {cid}} | Returns CID |
PubChem_get_compound_properties_by_CID | cid | - | {status, data: {}} | Chemical properties |
Important: All parameter names and requirements apply to both Python SDK and MCP implementations.
The Metabolomics Research skill provides comprehensive metabolomics analysis through a 4-phase pipeline that:
Key Features:
operation parameter)Best for:
Limitations:
See QUICK_START.md for: