Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

setup-tooluniverse设置工具宇宙

Agent Skill

setup-tooluniverse 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,541

周安装

238

GitHub Stars

1,336

下载量

1,942
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:setup-tooluniverse(设置工具宇宙)
来源仓库:https://github.com/mims-harvard/tooluniverse
仓库路径:skills/setup-tooluniverse
安装命令:
npx skills add https://github.com/mims-harvard/tooluniverse --skill setup-tooluniverse
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill setup-tooluniverse

简介

用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • setup-tooluniverse 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Setup ToolUniverse

Guide the user step-by-step through setting up ToolUniverse.

Agent Behavior

  • Detect language from user's first message. Respond in their language; keep commands/URLs in English.
  • Go one step at a time. Ask before proceeding.
  • Use AskQuestion for structured choices.
  • Explain briefly in plain language. Celebrate small wins.
  • When something goes wrong, help troubleshoot before moving on.

Internal Notes (do not show)

ToolUniverse has 1200+ tools. The tooluniverse command enables compact mode automatically, exposing only 5 core MCP tools (list_tools, grep_tools, get_tool_info, execute_tool, find_tools) while keeping all tools accessible via execute_tool.

What is ToolUniverse?

Always explain first, in plain language:

ToolUniverse is free, open-source software connecting to 2,000+ scientific databases (PubMed, UniProt, ChEMBL, FAERS, ClinicalTrials.gov, etc.). Instead of visiting each website, you search from one place. Think of it like a universal remote for scientific databases.

Why AI assistants? The AI reads your question, figures out which databases to search, runs queries, and summarizes results. You just ask your question.

Step 1: Choose How to Use It

Present using AskQuestion:

ModeWhat it meansWho it's for
Chat modeAsk questions to an AI assistant. No coding.Most researchers.
Command lineType short commands in Terminal.Quick tests. Terminal-comfortable users.
Python codeWrite scripts for automated pipelines.Programmers.

Options: "I want to ask questions" → Chat mode | "Quick try" → CLI | "I write Python" → SDK | "I don't know" → Recommend Chat mode

If Chat mode, ask which app (AskQuestion): Cursor, Claude Desktop, VS Code/Copilot, Windsurf, Claude Code, Gemini CLI, Codex, Cline/Trae/Antigravity/OpenCode. "I don't have any" → Recommend Claude Desktop.

Step 2: Install uv

Only prerequisite: uv (manages everything else automatically).

Terminal help (if needed): Mac: Cmd+Space → "Terminal" → Enter. Windows: Win key → "PowerShell" → Enter.

curl -LsSf https://astral.sh/uv/install.sh | sh

(This is a safe, standard command that downloads and installs uv, a small package manager. It's widely used by Python developers. Close and reopen your terminal after it finishes.)

Verify: uv --version

CLI Setup

Make sure Step 2 is done, then try:

uvx --from tooluniverse tu status              # How many tools?
uvx --from tooluniverse tu find 'drug safety'  # Search by topic
uvx --from tooluniverse tu info FAERS_count_death_related_by_drug  # See params
uvx --from tooluniverse tu run FAERS_count_death_related_by_drug '{"drug_name": "metformin"}'

First run takes ~30s (downloads package), then instant. Shortcut: uv tool install tooluniverse → then just use tu directly.

All CLI subcommands

CommandWhat it doesExample
tu statusShow tool count and top categoriestu status
tu listList tools (modes: names, categories, basic, by_category, summary, custom)tu list --mode basic --limit 20
tu findSearch by natural language (keyword scoring, no API key needed)tu find 'protein structure analysis'
tu grepText/regex pattern searchtu grep '^UniProt' --mode regex
tu infoShow tool parameters and schematu info PubMed_search_articles
tu runExecute a tooltu run PubMed_search_articles '{"query": "CRISPR"}'
tu testTest a tool with its example inputstu test UniProt_get_entry_by_accession
tu buildGenerate typed Python wrappers for Coding APItu build --output./my_tools
tu serveStart MCP stdio server (same as uvx tooluniverse)tu serve

Output flags (most commands except build/serve): --json (pretty) or --raw (compact, pipe-friendly).

Continue to Step 3 (API Keys).

SDK Setup

Make sure Step 2 is done. For detailed patterns, invoke the tooluniverse-sdk skill.

uv pip install tooluniverse

Coding API — 3 calling patterns

Pattern 1: Direct import (typed, with autocomplete):

from tooluniverse.tools import UniProt_get_entry_by_accession
result = UniProt_get_entry_by_accession(accession="P12345")

Pattern 2: Attribute access (no import needed per tool):

from tooluniverse import ToolUniverse
tu = ToolUniverse()
tu.load_tools()
result = tu.tools.UniProt_get_entry_by_accession(accession="P12345")

Pattern 3: JSON-based (dynamic, for pipelines):

result = tu.run({"name": "UniProt_get_entry_by_accession", "arguments": {"accession": "P12345"}})

Generate typed wrappers: tu build (creates importable Python modules with autocomplete).

Agentic Tools & Code Executor

ToolUniverse also includes 23 AI-powered agentic tools (ScientificTextSummarizer, HypothesisGenerator, ExperimentalDesignScorer, peer-review tools, etc.) and 2 code executor tools (python_code_executor, python_script_runner). These are called like any other tool — via tu.run() or execute_tool(). Agentic tools require an LLM API key (e.g., OPENAI_API_KEY).

Continue to Step 3 (API Keys).

MCP Setup (Chat Mode)

Make sure Step 2 is done (uv --version works).

Add ToolUniverse to your app's config

Config file help (if user seems unfamiliar): Config files are plain text that store settings — like a preference list for the app. You don't need to understand the format; just paste exactly what's shown below. Most apps have a Settings button that opens the file for you (see table). If the file is empty, paste the entire block. If it already has content, the agent should help merge it.

Default config (same for most clients):

{
  "mcpServers": {
    "tooluniverse": {
      "command": "uvx",
      "args": ["tooluniverse"],
      "env": { "PYTHONIOENCODING": "utf-8" }
    }
  }
}

Config file locations:

ClientFileHow to Access
Cursor~/.cursor/mcp.jsonSettings → MCP → Add new global MCP server
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.jsonSettings → Developer → Edit Config
Claude Code~/.claude.json or .mcp.jsonclaude mcp add or edit directly
Windsurf~/.codeium/windsurf/mcp_config.jsonMCP hammer icon → Configure
Clinecline_mcp_settings.jsonCline panel → MCP Servers → Configure
Gemini CLI~/.gemini/settings.jsongemini mcp add or edit directly
Trae.trae/mcp.jsonCtrl+U → AI Management → MCP → Configure

Different formats: VS Code uses "servers" key with "type": "stdio". Codex uses TOML. OpenCode uses "mcp" key. See references/mcp-configs.md for these.

Continue to Step 3 (API Keys).

Step 3: API Keys

Many tools work without keys, but some unlock powerful features. Ask research interests first (AskQuestion):

  • Literature / Drug discovery / Protein structure / Genomics / Rare diseases / Enzymology / Patent search / AI analysis / All / Skip

Map to recommended keys (2-4 to start). Walk through one at a time: explain what it unlocks, give registration link, wait for key, add to config.

Tier 1 (Core — recommend for most users):

KeyUnlocksFree?Registration
NCBI_API_KEYPubMed (rate limit 3→10/s)Yeshttps://account.ncbi.nlm.nih.gov/settings/
NVIDIA_API_KEY16 tools: AlphaFold2, docking, genomicsYeshttps://build.nvidia.com
BIOGRID_API_KEYProtein interaction queriesYeshttps://webservice.thebiogrid.org/
FDA_API_KEYFDA adverse events, drug labels (rate 240→1000/min)Yeshttps://open.fda.gov/apis/authentication/

Tier 2 (Specialized — based on interests):

KeyUnlocksRegistration
DISGENET_API_KEYGene-disease associationshttps://disgenet.com/academic-apply
OMIM_API_KEYMendelian/rare diseasehttps://omim.org/api
ONCOKB_API_TOKENPrecision oncologyhttps://www.oncokb.org/apiAccess
UMLS_API_KEYMedical terminologyhttps://uts.nlm.nih.gov/uts/

See API_KEYS_REFERENCE.md for the complete list with all tiers.

Adding keys:

Chat mode — add to env block in MCP config:

"env": {
  "PYTHONIOENCODING": "utf-8",
  "NCBI_API_KEY": "your_key_here"
}

CLI — set environment variables:

export NCBI_API_KEY="your_key_here"       # Current session
echo 'export NCBI_API_KEY="key"' >> ~/.zshrc  # Persist across sessions

SDK — same as CLI (export or .env file).

Step 4: Test Together

Don't just tell — do it WITH the user.

Chat mode: Ask user to restart app. Then run a test call yourself:

  1. list_tools or grep_tools with "PubMed" — confirm tools visible
  2. execute_tool("PubMed_search_articles", {"query": "CRISPR", "max_results": 1}) — confirm it works
  3. Celebrate: "It works! You have access to 1200+ scientific tools."

CLI: Run together:

tu status && tu find 'protein' && tu run PubMed_search_articles '{"query": "CRISPR", "max_results": 1}'

SDK: Run the Python snippet from SDK Setup together.

If issues: Most common: app not restarted, uv not in PATH (reopen terminal), JSON syntax error in config.

Step 5: Install Skills (Recommended for Chat Mode)

Skills are pre-built research workflows that turn basic tool calls into expert investigations.

Chat mode users: The agent should run this for the user:

git clone --depth 1 https://github.com/mims-harvard/ToolUniverse.git /tmp/tu-skills

Then copy to client's skill directory:

ClientCommand
Cursormkdir -p.cursor/skills && cp -r /tmp/tu-skills/skills/*.cursor/skills/
Claude Codemkdir -p.claude/skills && cp -r /tmp/tu-skills/skills/*.claude/skills/
Windsurfmkdir -p.windsurf/skills && cp -r /tmp/tu-skills/skills/*.windsurf/skills/
Codexmkdir -p.agents/skills && cp -r /tmp/tu-skills/skills/*.agents/skills/
Gemini CLImkdir -p.gemini/skills && cp -r /tmp/tu-skills/skills/*.gemini/skills/

Clean up: rm -rf /tmp/tu-skills

Skills activate automatically based on user's question. Try: "Research the drug metformin" or "What does the literature say about CRISPR in cancer?"

CLI users: Skills are designed for AI chat agents. Use tu find, tu info, tu run instead. For full multi-step workflows, use Chat mode or build SDK pipelines.

What's Next? (Guided First Use)

Don't list suggestions — run a live demo WITH the user.

Pick a demo query based on research interests (from Step 3):

InterestFirst querySkill
Literature"What does the literature say about CRISPR in cancer?"literature-deep-research
Drug discovery"Research the drug metformin"drug-research
Protein structure"Find protein structures for human EGFR"protein-structure-retrieval
Genomics"What genes are associated with type 2 diabetes?"disease-research
Rare diseases"Patient with progressive ataxia and oculomotor apraxia — differential diagnosis?"rare-disease-diagnosis
Drug safety"What are the adverse events for pembrolizumab?"pharmacovigilance
General"Research the drug aspirin"drug-research

Run the demo — invoke the skill and show real results.

Prompt cheat sheet (share after demo)

Chat mode users:

1. "Research the drug [name]" — full drug profile 2. "Research [disease]" — comprehensive disease analysis 3. "What are the known targets of [drug]?" — target intelligence 4. "What does the literature say about [topic]?" — deep literature review 5. "Find protein structures for [protein]" — 3D structures 6. "Is [variant] pathogenic?" — variant interpretation 7. "What drugs could be repurposed for [disease]?" — repurposing 8. "What are the adverse events for [drug]?" — safety analysis 9. "Find clinical trials for [disease/drug]" — trial matching 10. "What are the protein interactions for [gene]?" — interaction network 11. "What are the clinical guidelines for [condition]?" — practice guidelines 12. "Check drug interactions between [drug1] and [drug2]" — DDI analysis Just ask naturally — I'll figure out which databases to search.

CLI users:

``bash tu find 'drug safety' # Discover tools tu info PubMed_search_articles # Check parameters tu run PubMed_search_articles '{"query": "CRISPR cancer", "max_results": 3}' tu run UniProt_get_entry_by_accession '{"accession": "P12345"}' tu run FAERS_count_death_related_by_drug '{"drug_name": "metformin"}' ``

Write Agent Memory

After setup, write a reminder to the agent's memory file so future sessions know ToolUniverse is available.

ClientFile
Cursor.cursor/rules/tooluniverse.md
Claude CodeCLAUDE.md or .claude/CLAUDE.md (append)
Windsurf.windsurf/rules/tooluniverse.md
VS Code/Copilot.github/copilot-instructions.md (append)
Codex / OpenCodeAGENTS.md (append)
Gemini CLIGEMINI.md (append)
Cline.clinerules/tooluniverse.md
Trae.trae/rules/tooluniverse.md

Content:

# ToolUniverse
For any scientific research question (drugs, genes, proteins, diseases, literature, clinical trials, etc.), invoke the `tooluniverse` skill — it routes to specialized research skills and 1,200+ database tools.

Append (don't overwrite). Check for existing section first. Ask user permission.

Team / Project-Level Setup

If setting up ToolUniverse for a team or shared project:

Shared API keys: Create a .env file at the project root with all keys. Most clients and the CLI/SDK will pick up keys from .env automatically:

NCBI_API_KEY=your_shared_key
NVIDIA_API_KEY=your_shared_key

Project-level MCP config (so all team members get ToolUniverse automatically):

  • Cursor: .cursor/mcp.json in project root
  • Claude Code: .mcp.json in project root
  • VS Code: .vscode/mcp.json in project root
  • Windsurf: project-level via Windsurf UI

Project-level skills: Install skills into the project (e.g., .cursor/skills/) so all team members share them.

Team-wide upgrade: Each team member runs uv cache clean tooluniverse and restarts their app. To pin a specific version, use "args": ["tooluniverse==X.Y.Z"] in the MCP config.

Common Issues

IssueFix
requires-python >= 3.10uv python install 3.12
uvx: command not foundRun install script from Step 2, restart terminal
Context window overflowVerify using uvx tooluniverse (compact mode is default)
ModuleNotFoundErroruv pip install tooluniverse[all]
MCP server won't startTest: uvx tooluniverse in terminal. Check JSON syntax.
API key 401/403Check key in env block, restart app, verify key name
Upgrade neededuv cache clean tooluniverse then restart app

Still stuck? GitHub issues or email Shanghua Gao.

Quick Reference

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.75%
按下载量换算675

Claude

29.45%
按下载量换算572

Cursor

19.95%
按下载量换算387

Gemini CLI

10.18%
按下载量换算198

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills