tooluniverse 1.0.8__py3-none-any.whl → 1.0.9.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tooluniverse might be problematic. Click here for more details.
- tooluniverse/__init__.py +8 -0
- tooluniverse/admetai_tool.py +8 -1
- tooluniverse/compose_scripts/output_summarizer.py +87 -33
- tooluniverse/compose_tool.py +2 -2
- tooluniverse/data/adverse_event_tools.json +97 -98
- tooluniverse/data/agentic_tools.json +81 -162
- tooluniverse/data/compose_tools.json +0 -54
- tooluniverse/data/drug_discovery_agents.json +10 -20
- tooluniverse/data/literature_search_tools.json +15 -35
- tooluniverse/data/monarch_tools.json +1 -2
- tooluniverse/data/opentarget_tools.json +8 -16
- tooluniverse/data/output_summarization_tools.json +23 -20
- tooluniverse/data/packages/bioinformatics_core_tools.json +2 -2
- tooluniverse/data/packages/cheminformatics_tools.json +1 -1
- tooluniverse/data/packages/genomics_tools.json +1 -1
- tooluniverse/data/packages/single_cell_tools.json +1 -1
- tooluniverse/data/packages/structural_biology_tools.json +1 -1
- tooluniverse/data/tool_composition_tools.json +2 -4
- tooluniverse/execute_function.py +39 -1
- tooluniverse/logging_config.py +64 -2
- tooluniverse/molecule_2d_tool.py +9 -3
- tooluniverse/molecule_3d_tool.py +9 -3
- tooluniverse/output_hook.py +217 -150
- tooluniverse/smcp.py +8 -1
- tooluniverse/smcp_server.py +92 -201
- tooluniverse/tools/__init__.py +1 -3
- {tooluniverse-1.0.8.dist-info → tooluniverse-1.0.9.1.dist-info}/METADATA +3 -2
- {tooluniverse-1.0.8.dist-info → tooluniverse-1.0.9.1.dist-info}/RECORD +32 -33
- {tooluniverse-1.0.8.dist-info → tooluniverse-1.0.9.1.dist-info}/entry_points.txt +0 -3
- tooluniverse/tools/MultiAgentLiteratureSearch.py +0 -59
- {tooluniverse-1.0.8.dist-info → tooluniverse-1.0.9.1.dist-info}/WHEEL +0 -0
- {tooluniverse-1.0.8.dist-info → tooluniverse-1.0.9.1.dist-info}/licenses/LICENSE +0 -0
- {tooluniverse-1.0.8.dist-info → tooluniverse-1.0.9.1.dist-info}/top_level.txt +0 -0
tooluniverse/smcp_server.py
CHANGED
|
@@ -7,6 +7,7 @@ It creates a minimal SMCP server that exposes all ToolUniverse tools as MCP tool
|
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
9
|
import argparse
|
|
10
|
+
import os
|
|
10
11
|
import sys
|
|
11
12
|
from .smcp import SMCP
|
|
12
13
|
|
|
@@ -134,6 +135,22 @@ def run_stdio_server():
|
|
|
134
135
|
This function provides compatibility with the original MCP server's run_claude_desktop function.
|
|
135
136
|
It accepts the same arguments as run_smcp_server but forces transport='stdio'.
|
|
136
137
|
"""
|
|
138
|
+
# Set environment variable and reconfigure logging for stdio mode
|
|
139
|
+
os.environ["TOOLUNIVERSE_STDIO_MODE"] = "1"
|
|
140
|
+
|
|
141
|
+
# Import and reconfigure logging to stderr
|
|
142
|
+
from .logging_config import reconfigure_for_stdio
|
|
143
|
+
|
|
144
|
+
reconfigure_for_stdio()
|
|
145
|
+
# Ensure stdout is line-buffered for immediate JSON-RPC flushing in stdio mode
|
|
146
|
+
try:
|
|
147
|
+
import sys as _sys
|
|
148
|
+
|
|
149
|
+
if hasattr(_sys.stdout, "reconfigure"):
|
|
150
|
+
_sys.stdout.reconfigure(line_buffering=True)
|
|
151
|
+
except Exception:
|
|
152
|
+
pass
|
|
153
|
+
|
|
137
154
|
parser = argparse.ArgumentParser(
|
|
138
155
|
description="Start SMCP (Scientific Model Context Protocol) Server with stdio transport",
|
|
139
156
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
@@ -297,107 +314,35 @@ Examples:
|
|
|
297
314
|
from .execute_function import ToolUniverse
|
|
298
315
|
|
|
299
316
|
tu = ToolUniverse()
|
|
300
|
-
|
|
317
|
+
# Use ToolUniverse API to list categories consistently
|
|
318
|
+
stats = tu.list_built_in_tools(mode="config", scan_all=False)
|
|
301
319
|
|
|
302
320
|
print("Available tool categories:", file=sys.stderr)
|
|
303
321
|
print("=" * 50, file=sys.stderr)
|
|
304
322
|
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
if category in [
|
|
315
|
-
"uniprot",
|
|
316
|
-
"ChEMBL",
|
|
317
|
-
"opentarget",
|
|
318
|
-
"pubchem",
|
|
319
|
-
"hpa",
|
|
320
|
-
"rcsb_pdb",
|
|
321
|
-
"reactome",
|
|
322
|
-
"go",
|
|
323
|
-
]:
|
|
324
|
-
scientific_db.append(category)
|
|
325
|
-
elif category in [
|
|
326
|
-
"EuropePMC",
|
|
327
|
-
"semantic_scholar",
|
|
328
|
-
"pubtator",
|
|
329
|
-
"OpenAlex",
|
|
330
|
-
]:
|
|
331
|
-
literature.append(category)
|
|
332
|
-
elif category.startswith("software_"):
|
|
333
|
-
software.append(category)
|
|
334
|
-
elif category in [
|
|
335
|
-
"special_tools",
|
|
336
|
-
"tool_finder",
|
|
337
|
-
"tool_composition",
|
|
338
|
-
"agents",
|
|
339
|
-
]:
|
|
340
|
-
special.append(category)
|
|
341
|
-
elif category in [
|
|
342
|
-
"clinical_trials",
|
|
343
|
-
"fda_drug_label",
|
|
344
|
-
"fda_drug_adverse_event",
|
|
345
|
-
"dailymed",
|
|
346
|
-
"medlineplus",
|
|
347
|
-
]:
|
|
348
|
-
clinical.append(category)
|
|
349
|
-
else:
|
|
350
|
-
other.append(category)
|
|
351
|
-
|
|
352
|
-
if scientific_db:
|
|
353
|
-
print("\n🔬 Scientific Databases:", file=sys.stderr)
|
|
354
|
-
for cat in scientific_db:
|
|
355
|
-
print(f" {cat}", file=sys.stderr)
|
|
356
|
-
|
|
357
|
-
if literature:
|
|
358
|
-
print("\n📚 Literature & Knowledge:", file=sys.stderr)
|
|
359
|
-
for cat in literature:
|
|
360
|
-
print(f" {cat}", file=sys.stderr)
|
|
361
|
-
|
|
362
|
-
if clinical:
|
|
363
|
-
print("\n🏥 Clinical & Drug Information:", file=sys.stderr)
|
|
364
|
-
for cat in clinical:
|
|
365
|
-
print(f" {cat}", file=sys.stderr)
|
|
366
|
-
|
|
367
|
-
if software:
|
|
368
|
-
print("\n💻 Software Tools:", file=sys.stderr)
|
|
369
|
-
for cat in software[:5]: # Show first 5
|
|
370
|
-
print(f" {cat}", file=sys.stderr)
|
|
371
|
-
if len(software) > 5:
|
|
372
|
-
print(
|
|
373
|
-
f" ... and {len(software, file=sys.stderr) - 5} more software categories"
|
|
374
|
-
)
|
|
375
|
-
|
|
376
|
-
if special:
|
|
377
|
-
print("\n🛠 Special & Meta Tools:", file=sys.stderr)
|
|
378
|
-
for cat in special:
|
|
379
|
-
print(f" {cat}", file=sys.stderr)
|
|
380
|
-
|
|
381
|
-
if other:
|
|
382
|
-
print("\n📂 Other Categories:", file=sys.stderr)
|
|
383
|
-
for cat in other:
|
|
384
|
-
print(f" {cat}", file=sys.stderr)
|
|
323
|
+
categories = stats.get("categories", {})
|
|
324
|
+
# Sort by count desc, then name asc
|
|
325
|
+
sorted_items = sorted(
|
|
326
|
+
categories.items(), key=lambda kv: (-kv[1].get("count", 0), kv[0])
|
|
327
|
+
)
|
|
328
|
+
for key, info in sorted_items:
|
|
329
|
+
display = key.replace("_", " ").title()
|
|
330
|
+
count = info.get("count", 0)
|
|
331
|
+
print(f" {display}: {count}", file=sys.stderr)
|
|
385
332
|
|
|
386
|
-
print(f"\nTotal: {len(tool_types, file=sys.stderr)} categories available")
|
|
387
|
-
print("\nCommon combinations:", file=sys.stderr)
|
|
388
333
|
print(
|
|
389
|
-
"
|
|
334
|
+
f"\nTotal categories: {stats.get('total_categories', 0)}",
|
|
390
335
|
file=sys.stderr,
|
|
391
336
|
)
|
|
392
337
|
print(
|
|
393
|
-
"
|
|
338
|
+
f"Total unique tools: {stats.get('total_tools', 0)}",
|
|
394
339
|
file=sys.stderr,
|
|
395
340
|
)
|
|
341
|
+
|
|
396
342
|
print(
|
|
397
|
-
"
|
|
343
|
+
"\nTip: Use --exclude-categories or --include-tools to customize loading",
|
|
398
344
|
file=sys.stderr,
|
|
399
345
|
)
|
|
400
|
-
print(" Minimal setup: special_tools tool_finder", file=sys.stderr)
|
|
401
346
|
|
|
402
347
|
except Exception as e:
|
|
403
348
|
print(f"❌ Error listing categories: {e}", file=sys.stderr)
|
|
@@ -415,22 +360,30 @@ Examples:
|
|
|
415
360
|
print("Available tools:", file=sys.stderr)
|
|
416
361
|
print("=" * 50, file=sys.stderr)
|
|
417
362
|
|
|
418
|
-
# Group tools by category
|
|
363
|
+
# Group tools by category (use ToolUniverse's canonical 'type' field)
|
|
419
364
|
tools_by_category = {}
|
|
420
365
|
for tool in tu.all_tools:
|
|
421
|
-
|
|
366
|
+
# Handle both dict and object tool formats
|
|
367
|
+
if isinstance(tool, dict):
|
|
368
|
+
tool_type = tool.get("type", "unknown")
|
|
369
|
+
tool_name = tool.get("name", "unknown")
|
|
370
|
+
else:
|
|
371
|
+
tool_type = getattr(tool, "type", "unknown")
|
|
372
|
+
tool_name = getattr(tool, "name", "unknown")
|
|
373
|
+
|
|
422
374
|
if tool_type not in tools_by_category:
|
|
423
375
|
tools_by_category[tool_type] = []
|
|
424
|
-
tools_by_category[tool_type].append(
|
|
376
|
+
tools_by_category[tool_type].append(tool_name)
|
|
425
377
|
|
|
426
378
|
total_tools = 0
|
|
427
379
|
for category in sorted(tools_by_category.keys()):
|
|
428
380
|
tools = sorted(tools_by_category[category])
|
|
429
|
-
print(f"\n📁 {category} ({len(tools, file=sys.stderr)
|
|
381
|
+
print(f"\n📁 {category} ({len(tools)} tools):", file=sys.stderr)
|
|
430
382
|
for tool in tools[:10]: # Show first 10 tools per category
|
|
431
383
|
print(f" {tool}", file=sys.stderr)
|
|
432
384
|
if len(tools) > 10:
|
|
433
|
-
|
|
385
|
+
# Print remaining count to stderr
|
|
386
|
+
print(f" ... and {len(tools) - 10} more tools", file=sys.stderr)
|
|
434
387
|
total_tools += len(tools)
|
|
435
388
|
|
|
436
389
|
print(f"\nTotal: {total_tools} tools available", file=sys.stderr)
|
|
@@ -554,7 +507,7 @@ Examples:
|
|
|
554
507
|
print("🔗 Hooks disabled", file=sys.stderr)
|
|
555
508
|
|
|
556
509
|
print(f"⚡ Max workers: {args.max_workers}", file=sys.stderr)
|
|
557
|
-
print()
|
|
510
|
+
print(file=sys.stderr)
|
|
558
511
|
|
|
559
512
|
# Create SMCP server with hook support
|
|
560
513
|
server = SMCP(
|
|
@@ -769,96 +722,27 @@ Examples:
|
|
|
769
722
|
from .execute_function import ToolUniverse
|
|
770
723
|
|
|
771
724
|
tu = ToolUniverse()
|
|
772
|
-
|
|
725
|
+
# Use ToolUniverse API to list categories consistently
|
|
726
|
+
stats = tu.list_built_in_tools(mode="config", scan_all=False)
|
|
773
727
|
|
|
774
728
|
print("Available tool categories:")
|
|
775
729
|
print("=" * 50)
|
|
776
730
|
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
"rcsb_pdb",
|
|
793
|
-
"reactome",
|
|
794
|
-
"go",
|
|
795
|
-
]:
|
|
796
|
-
scientific_db.append(category)
|
|
797
|
-
elif category in [
|
|
798
|
-
"EuropePMC",
|
|
799
|
-
"semantic_scholar",
|
|
800
|
-
"pubtator",
|
|
801
|
-
"OpenAlex",
|
|
802
|
-
]:
|
|
803
|
-
literature.append(category)
|
|
804
|
-
elif category.startswith("software_"):
|
|
805
|
-
software.append(category)
|
|
806
|
-
elif category in [
|
|
807
|
-
"special_tools",
|
|
808
|
-
"tool_finder",
|
|
809
|
-
"tool_composition",
|
|
810
|
-
"agents",
|
|
811
|
-
]:
|
|
812
|
-
special.append(category)
|
|
813
|
-
elif category in [
|
|
814
|
-
"clinical_trials",
|
|
815
|
-
"fda_drug_label",
|
|
816
|
-
"fda_drug_adverse_event",
|
|
817
|
-
"dailymed",
|
|
818
|
-
"medlineplus",
|
|
819
|
-
]:
|
|
820
|
-
clinical.append(category)
|
|
821
|
-
else:
|
|
822
|
-
other.append(category)
|
|
823
|
-
|
|
824
|
-
if scientific_db:
|
|
825
|
-
print("\n🔬 Scientific Databases:")
|
|
826
|
-
for cat in scientific_db:
|
|
827
|
-
print(f" {cat}")
|
|
828
|
-
|
|
829
|
-
if literature:
|
|
830
|
-
print("\n📚 Literature & Knowledge:")
|
|
831
|
-
for cat in literature:
|
|
832
|
-
print(f" {cat}")
|
|
833
|
-
|
|
834
|
-
if clinical:
|
|
835
|
-
print("\n🏥 Clinical & Drug Information:")
|
|
836
|
-
for cat in clinical:
|
|
837
|
-
print(f" {cat}")
|
|
838
|
-
|
|
839
|
-
if software:
|
|
840
|
-
print("\n💻 Software Tools:")
|
|
841
|
-
for cat in software[:5]: # Show first 5
|
|
842
|
-
print(f" {cat}")
|
|
843
|
-
if len(software) > 5:
|
|
844
|
-
print(f" ... and {len(software) - 5} more software categories")
|
|
845
|
-
|
|
846
|
-
if special:
|
|
847
|
-
print("\n🛠 Special & Meta Tools:")
|
|
848
|
-
for cat in special:
|
|
849
|
-
print(f" {cat}")
|
|
850
|
-
|
|
851
|
-
if other:
|
|
852
|
-
print("\n📂 Other Categories:")
|
|
853
|
-
for cat in other:
|
|
854
|
-
print(f" {cat}")
|
|
855
|
-
|
|
856
|
-
print(f"\nTotal: {len(tool_types)} categories available")
|
|
857
|
-
print("\nCommon combinations:")
|
|
858
|
-
print(" Scientific research: uniprot ChEMBL opentarget pubchem hpa")
|
|
859
|
-
print(" Drug discovery: ChEMBL fda_drug_label clinical_trials pubchem")
|
|
860
|
-
print(" Literature analysis: EuropePMC semantic_scholar pubtator")
|
|
861
|
-
print(" Minimal setup: special_tools tool_finder")
|
|
731
|
+
categories = stats.get("categories", {})
|
|
732
|
+
# Sort by count desc, then name asc
|
|
733
|
+
sorted_items = sorted(
|
|
734
|
+
categories.items(), key=lambda kv: (-kv[1].get("count", 0), kv[0])
|
|
735
|
+
)
|
|
736
|
+
for key, info in sorted_items:
|
|
737
|
+
display = key.replace("_", " ").title()
|
|
738
|
+
count = info.get("count", 0)
|
|
739
|
+
print(f" {display}: {count}")
|
|
740
|
+
|
|
741
|
+
print(f"\nTotal categories: {stats.get('total_categories', 0)}")
|
|
742
|
+
print(f"Total unique tools: {stats.get('total_tools', 0)}")
|
|
743
|
+
print(
|
|
744
|
+
"\nTip: Use --exclude-categories or --include-tools to customize loading"
|
|
745
|
+
)
|
|
862
746
|
|
|
863
747
|
except Exception as e:
|
|
864
748
|
print(f"❌ Error listing categories: {e}")
|
|
@@ -871,30 +755,37 @@ Examples:
|
|
|
871
755
|
from .execute_function import ToolUniverse
|
|
872
756
|
|
|
873
757
|
tu = ToolUniverse()
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
758
|
+
# Reuse ToolUniverse selection logic directly (applies API key skipping internally)
|
|
759
|
+
tool_config_files = {}
|
|
760
|
+
if args.tool_config_files:
|
|
761
|
+
for config_spec in args.tool_config_files:
|
|
762
|
+
if ":" in config_spec:
|
|
763
|
+
category, path = config_spec.split(":", 1)
|
|
764
|
+
tool_config_files[category] = path
|
|
765
|
+
|
|
766
|
+
tu.load_tools(
|
|
767
|
+
tool_type=(
|
|
768
|
+
args.categories
|
|
769
|
+
if args.categories and len(args.categories) > 0
|
|
770
|
+
else None
|
|
771
|
+
),
|
|
772
|
+
exclude_tools=args.exclude_tools,
|
|
773
|
+
exclude_categories=args.exclude_categories,
|
|
774
|
+
include_tools=args.include_tools,
|
|
775
|
+
tool_config_files=(tool_config_files or None),
|
|
776
|
+
tools_file=args.tools_file,
|
|
777
|
+
include_tool_types=args.include_tool_types,
|
|
778
|
+
exclude_tool_types=args.exclude_tool_types,
|
|
779
|
+
)
|
|
886
780
|
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
tools = sorted(tools_by_category[category])
|
|
890
|
-
print(f"\n📁 {category} ({len(tools)} tools):")
|
|
891
|
-
for tool in tools[:10]: # Show first 10 tools per category
|
|
892
|
-
print(f" {tool}")
|
|
893
|
-
if len(tools) > 10:
|
|
894
|
-
print(f" ... and {len(tools) - 10} more tools")
|
|
895
|
-
total_tools += len(tools)
|
|
781
|
+
# Names of tools that are actually available under current configuration
|
|
782
|
+
tool_names = tu.get_available_tools(name_only=True)
|
|
896
783
|
|
|
897
|
-
print(
|
|
784
|
+
print("Available tools (for this server configuration):")
|
|
785
|
+
print("=" * 50)
|
|
786
|
+
for name in sorted(tool_names)[:200]: # cap output for readability
|
|
787
|
+
print(f" {name}")
|
|
788
|
+
print(f"\nTotal: {len(tool_names)} tools available")
|
|
898
789
|
print("\nNote: Use --exclude-tools to exclude specific tools by name")
|
|
899
790
|
print(" Use --exclude-categories to exclude entire categories")
|
|
900
791
|
|
tooluniverse/tools/__init__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
ToolUniverse Tools
|
|
3
3
|
|
|
4
|
-
Type-safe Python interface to
|
|
4
|
+
Type-safe Python interface to 669 scientific tools.
|
|
5
5
|
Each tool is in its own module for minimal import overhead.
|
|
6
6
|
|
|
7
7
|
Usage:
|
|
@@ -497,7 +497,6 @@ from .MedlinePlus_get_genetics_gene_by_name import MedlinePlus_get_genetics_gene
|
|
|
497
497
|
from .MedlinePlus_get_genetics_index import MedlinePlus_get_genetics_index
|
|
498
498
|
from .MedlinePlus_search_topics_by_keyword import MedlinePlus_search_topics_by_keyword
|
|
499
499
|
from .MethodologyRigorReviewer import MethodologyRigorReviewer
|
|
500
|
-
from .MultiAgentLiteratureSearch import MultiAgentLiteratureSearch
|
|
501
500
|
from .NICE_Clinical_Guidelines_Search import NICE_Clinical_Guidelines_Search
|
|
502
501
|
from .NICE_Guideline_Full_Text import NICE_Guideline_Full_Text
|
|
503
502
|
from .NoveltySignificanceReviewer import NoveltySignificanceReviewer
|
|
@@ -1351,7 +1350,6 @@ __all__ = [
|
|
|
1351
1350
|
"MedlinePlus_get_genetics_index",
|
|
1352
1351
|
"MedlinePlus_search_topics_by_keyword",
|
|
1353
1352
|
"MethodologyRigorReviewer",
|
|
1354
|
-
"MultiAgentLiteratureSearch",
|
|
1355
1353
|
"NICE_Clinical_Guidelines_Search",
|
|
1356
1354
|
"NICE_Guideline_Full_Text",
|
|
1357
1355
|
"NoveltySignificanceReviewer",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tooluniverse
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9.1
|
|
4
4
|
Summary: A comprehensive collection of scientific tools for Agentic AI, offering integration with the ToolUniverse SDK and MCP Server to support advanced scientific workflows.
|
|
5
5
|
Author-email: Shanghua Gao <shanghuagao@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/mims-harvard/ToolUniverse
|
|
@@ -29,6 +29,7 @@ Requires-Dist: sentence-transformers>=5.1.0
|
|
|
29
29
|
Requires-Dist: fitz>=0.0.1.dev2
|
|
30
30
|
Requires-Dist: pandas>=2.2.3
|
|
31
31
|
Requires-Dist: admet-ai>=1.2.0
|
|
32
|
+
Requires-Dist: setuptools>=70.0.0
|
|
32
33
|
Requires-Dist: pdfplumber>=0.11.0
|
|
33
34
|
Requires-Dist: playwright>=1.55.0
|
|
34
35
|
Requires-Dist: faiss-cpu>=1.12.0
|
|
@@ -92,7 +93,7 @@ Dynamic: license-file
|
|
|
92
93
|
# <img src="docs/_static/logo.png" alt="ToolUniverse Logo" height="28" style="vertical-align: middle; margin-right: 8px;" /> ToolUniverse: Democratizing AI scientists
|
|
93
94
|
|
|
94
95
|
[](https://arxiv.org/abs/2509.23426)
|
|
95
|
-
[](https://badge.fury.io/py/tooluniverse)
|
|
96
97
|
[](https://github.com/mims-harvard/ToolUniverse)
|
|
97
98
|
[_Supported-green)](README_USAGE.md#running-the-mcp-server)
|
|
98
99
|
[](https://zitniklab.hms.harvard.edu/ToolUniverse/)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
tooluniverse/__init__.py,sha256=
|
|
2
|
-
tooluniverse/admetai_tool.py,sha256=
|
|
1
|
+
tooluniverse/__init__.py,sha256=PvYhaTdU4pSC8V3DMzbybfkLSad2OkpQWgf74P-lfH8,17507
|
|
2
|
+
tooluniverse/admetai_tool.py,sha256=xeYCpROq7oGjYrzKtDCHSN94sB5jVLuLSu3E_eT5Ko8,3470
|
|
3
3
|
tooluniverse/agentic_tool.py,sha256=i0TEs6WhF21B4gs5k7DM67qTND4qDMPD2lUzLyEWnnM,25627
|
|
4
4
|
tooluniverse/alphafold_tool.py,sha256=NkKQttC0MfuetCTTcWTFEG2MdhyKwy3jb5TR4odiqAw,4658
|
|
5
5
|
tooluniverse/arxiv_tool.py,sha256=60e5moGt3XnwZeKx_nrvRZrwAavE11ok0j78AI5F6Xs,3610
|
|
@@ -11,7 +11,7 @@ tooluniverse/build_optimizer.py,sha256=UReMfhTGhGJqcEWdH6d5xfI-y3zJlaNfsei7qXxeC
|
|
|
11
11
|
tooluniverse/cellosaurus_tool.py,sha256=W_npl3ga45-Hpsdq7YyGsD5_DnR2AmyaQVYNjiZoNOs,47902
|
|
12
12
|
tooluniverse/chem_tool.py,sha256=tJusjamWNp0x8Ke-cvVgKB7-clvD6LXTaXA0Q0fqQv4,8336
|
|
13
13
|
tooluniverse/clinvar_tool.py,sha256=2NKPKC3b3eBzuwK0yc65bzPuRF4I-Jv_KjsVnBdiE6M,2945
|
|
14
|
-
tooluniverse/compose_tool.py,sha256=
|
|
14
|
+
tooluniverse/compose_tool.py,sha256=Q0KwVPgbac17VDnkP3pV-st0rNbG__CX0AMux-Os5lg,17117
|
|
15
15
|
tooluniverse/core_tool.py,sha256=hHD8nVSIy6lK2vF3ygKz73gsDEPYEL-otXZXeR7M2SY,5083
|
|
16
16
|
tooluniverse/crossref_tool.py,sha256=oba0kkWI9m9dugf_th1nEXPWPF4onJkFUyhp5h5H4pM,5736
|
|
17
17
|
tooluniverse/ctg_tool.py,sha256=3nR_F-YGpxVmTa6u5xi-mrTmLSH7OBehP4EJo-CQS0Y,46053
|
|
@@ -30,7 +30,7 @@ tooluniverse/enrichr_tool.py,sha256=YXuHwoG_Hi-kUWK7cY_X21b5pbqoREdG7fJxKq050Jg,
|
|
|
30
30
|
tooluniverse/ensembl_tool.py,sha256=i-kYliN5juitLTJqGiWcm7RXFV8k29XlfNBUC1Y1Z-M,2195
|
|
31
31
|
tooluniverse/europe_pmc_tool.py,sha256=-3CAq5tDhS5NoeHifevadBgP_MHDZJdwNmM5SvjbAa8,6080
|
|
32
32
|
tooluniverse/exceptions.py,sha256=3svVCG7H_G_8E1mco74KWi44u1M7V1JojVycSEWdi_o,5386
|
|
33
|
-
tooluniverse/execute_function.py,sha256=
|
|
33
|
+
tooluniverse/execute_function.py,sha256=hJxcHbewIfXXjPvV7HBZ0PrECMOKTQVhMOFRI5K6fbQ,107533
|
|
34
34
|
tooluniverse/extended_hooks.py,sha256=1Cg0rETh6_D21YFVqD-FhL7y4inZAGyQ6vMtHyugueg,15376
|
|
35
35
|
tooluniverse/fatcat_tool.py,sha256=-QEOYbv6KEcrOiOa27Ms1xm0sySB-vW4rWEinsS6EDw,2051
|
|
36
36
|
tooluniverse/gene_ontology_tool.py,sha256=l89XYdBEBm3eN3dG0lR4oV01H16_9IUB6a2c7W_c7Lg,7180
|
|
@@ -44,7 +44,7 @@ tooluniverse/hal_tool.py,sha256=HrU27B6TK_gMtk8tjafpVkpD1ABDlCOo1bsLmBNhaQU,2485
|
|
|
44
44
|
tooluniverse/hpa_tool.py,sha256=siRA0usQ0Rggloy3VL1b56QlytabndXS8Xzc9H3uWs8,64998
|
|
45
45
|
tooluniverse/humanbase_tool.py,sha256=xojNboYvFrW_LAzOzKaexp6tvyGSbUazpMfOvX5ETXY,15006
|
|
46
46
|
tooluniverse/llm_clients.py,sha256=6EAhxUmEpdKYjWMG6S0Q57mdp1JuCPxPehIudofCPzA,30484
|
|
47
|
-
tooluniverse/logging_config.py,sha256=
|
|
47
|
+
tooluniverse/logging_config.py,sha256=rMjpGw5jkJGsIN2AakLOCQ-jVEYf8UhET7sJGdrfCNQ,9107
|
|
48
48
|
tooluniverse/markitdown_tool.py,sha256=bnUA0Sw8KjVygqf8F6k3ATY7K23NWFqycnnfs9mm5qQ,5492
|
|
49
49
|
tooluniverse/mcp_client_tool.py,sha256=1AxczGYkW6kMynLwz1WLzH3KoIKM2cDQ9WMUTOsejTo,29053
|
|
50
50
|
tooluniverse/mcp_integration.py,sha256=9VtFDFbcVIuKO_sd1gFrOd-R0r6uxlYRjdsOKiqV1zs,13912
|
|
@@ -52,15 +52,15 @@ tooluniverse/mcp_tool_registry.py,sha256=GsTXbGbMGo3oXtoHSFXq_4p6XieZhzm4mHP82fN
|
|
|
52
52
|
tooluniverse/medlineplus_tool.py,sha256=__D7W2Khl05WllMnoV4Owv3pyl5EXS1lzEJmAE7PbD0,13214
|
|
53
53
|
tooluniverse/medrxiv_tool.py,sha256=QCJ0BdgI47IfSwvKw90LdZLRq_4sbV4ok5HdGzv5w5c,4140
|
|
54
54
|
tooluniverse/memory_manager.py,sha256=hAUvWen6xG5DMO28GokSfGPCTz0zrzMK-QO8EzRFnPM,6130
|
|
55
|
-
tooluniverse/molecule_2d_tool.py,sha256=
|
|
56
|
-
tooluniverse/molecule_3d_tool.py,sha256=
|
|
55
|
+
tooluniverse/molecule_2d_tool.py,sha256=SPXqi_KTN76ksG1DO0QP9ZKzcRbdQpXjfOau11hgC0w,10568
|
|
56
|
+
tooluniverse/molecule_3d_tool.py,sha256=uq3Q58q0LlB4y7xRaOUzoyQQp8GLjbWSSFdHin4tOsg,18727
|
|
57
57
|
tooluniverse/odphp_tool.py,sha256=5MUPcXBSi6wGGTN56vhNOyAZvIRLiTraxKpxKiQy1pU,9627
|
|
58
58
|
tooluniverse/openaire_tool.py,sha256=LPic0ErGhHV6ceGsUPlS2zTzQdwWvNPZDrnDAtou3I4,4578
|
|
59
59
|
tooluniverse/openalex_tool.py,sha256=ou_INKT8nct_NKjWTan7bdKzZ_i8ZwkxeHCwU9mN7dw,9439
|
|
60
60
|
tooluniverse/openfda_adv_tool.py,sha256=t5kffba0iNDVtFHYPtfLW8ql4dKLaWwdcFnE9cNmNWE,10168
|
|
61
61
|
tooluniverse/openfda_tool.py,sha256=AetafmFr1IygGAL8p1-URsNahVdN52tN0FvToTlkcMw,27425
|
|
62
62
|
tooluniverse/osf_preprints_tool.py,sha256=uO0VmCWdROXoq1U4w1YIfTxZkDpgYWBXh7MJ-fe_Jak,2193
|
|
63
|
-
tooluniverse/output_hook.py,sha256=
|
|
63
|
+
tooluniverse/output_hook.py,sha256=6alRemNqe367xKX1USyXB-FEzDmmPVF9me_DPtopDCc,49433
|
|
64
64
|
tooluniverse/package_tool.py,sha256=Ri-TPc_jTY3olHjPsMkEe2z45vknM7yynjtMXkh3Le8,8294
|
|
65
65
|
tooluniverse/pmc_tool.py,sha256=2K8ux4jv38XbEY6FPBiW5KZDflHo8WA7nRmLJ3HOHYk,6268
|
|
66
66
|
tooluniverse/protein_structure_3d_tool.py,sha256=byvtvW-B6aPUmW_OpcYKHFdbL-g3IWZk1RSN0cNYjcg,12318
|
|
@@ -72,8 +72,8 @@ tooluniverse/reactome_tool.py,sha256=ngmJXCcQfsu5d8XcX258ZHW4DIBi45sSjYNwUBk8nxo
|
|
|
72
72
|
tooluniverse/remote_tool.py,sha256=ywb5xaJBqOT38_r5FBVoF3QFQDcLvfOH5AQrT-g7Fcs,3368
|
|
73
73
|
tooluniverse/restful_tool.py,sha256=H7alq_vO3G4iVgZIZrrWh9vq2ForJN52Fl7_QOq7yaM,4409
|
|
74
74
|
tooluniverse/semantic_scholar_tool.py,sha256=gaDDL5Xy4Ij3qNqipZvwRfOBSyzGyIN8AANT-pYKHvI,3227
|
|
75
|
-
tooluniverse/smcp.py,sha256=
|
|
76
|
-
tooluniverse/smcp_server.py,sha256=
|
|
75
|
+
tooluniverse/smcp.py,sha256=8wUqsfU23hokFheTec3arbezLTWhyC-j-AQ4gbTSA0Y,104045
|
|
76
|
+
tooluniverse/smcp_server.py,sha256=EKzG-e-LVCVpShIUDxogaNRLZI-LS9m9QPy6Rbq0mfI,32482
|
|
77
77
|
tooluniverse/string_tool.py,sha256=3rio0Lt97FuU6fbpykq3ETqD9pA4h_gPR0uXKRb7Zu4,3936
|
|
78
78
|
tooluniverse/tool_finder_embedding.py,sha256=O0WMCT6z7a_pDDew04QtpyPk_qzfGCX_647rsrBs0ug,11239
|
|
79
79
|
tooluniverse/tool_finder_keyword.py,sha256=_Nt4-C1RranoywTk8vi6MePWPoNqFwOhafMDiTYl_SU,23480
|
|
@@ -102,7 +102,7 @@ tooluniverse/compose_scripts/drug_safety_analyzer.py,sha256=4lmGYY8a4T4WbeHIUG1a
|
|
|
102
102
|
tooluniverse/compose_scripts/enhanced_multi_agent_literature_search.py,sha256=GbdI4uYY8Y1OOXub5fOoMnLOOZ-7hD4kl3CA6b3jqG8,9948
|
|
103
103
|
tooluniverse/compose_scripts/literature_tool.py,sha256=8-NITTQHj6vdn-vo_d0W8l6Ed8bvDTkDOJ7yvhaE-lI,976
|
|
104
104
|
tooluniverse/compose_scripts/multi_agent_literature_search.py,sha256=O320QpaIjEbo0n2lxo5VZNbfvZjmZO4hsYALtEhR5j0,30416
|
|
105
|
-
tooluniverse/compose_scripts/output_summarizer.py,sha256=
|
|
105
|
+
tooluniverse/compose_scripts/output_summarizer.py,sha256=jcUA-6kIIMjOzS78QvobIWPDiAzl7M70KU9qBAb0ZXo,12225
|
|
106
106
|
tooluniverse/compose_scripts/tool_description_optimizer.py,sha256=L6Kd8e6Af8pD6dy8jrFzJq5jq-QNbg72gkQktn8IDBE,32175
|
|
107
107
|
tooluniverse/compose_scripts/tool_discover.py,sha256=RKzCmhDWzDCsAl2KCcEQRNH96mOf_2bTQOH2EVGvpC8,24976
|
|
108
108
|
tooluniverse/compose_scripts/tool_graph_composer.py,sha256=lmGeN94Mc9SZCeYo8ez55tKYLS1-dI3JDm-onKB5DZA,15566
|
|
@@ -110,8 +110,8 @@ tooluniverse/compose_scripts/tool_graph_generation.py,sha256=rbkvAZFnGu1frsafHt_
|
|
|
110
110
|
tooluniverse/compose_scripts/tool_metadata_generator.py,sha256=73_JBPS-yAZEbViBwEFxcLzpbAt-arfMpahzrdhsxMc,20846
|
|
111
111
|
tooluniverse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
tooluniverse/data/admetai_tools.json,sha256=08LCNSCZJxL6ZuPF1mVfbdlh9f2X5tnEwIYU7RcLLSM,6497
|
|
113
|
-
tooluniverse/data/adverse_event_tools.json,sha256=
|
|
114
|
-
tooluniverse/data/agentic_tools.json,sha256=
|
|
113
|
+
tooluniverse/data/adverse_event_tools.json,sha256=gmO2euqIvLqc9lfmf9h9W0_TR33AYpMg_M1tzBNKm7w,12084
|
|
114
|
+
tooluniverse/data/agentic_tools.json,sha256=Z5BSUxwC9uTJuP0SK5k_WnFs6qq4ow8Ib7m0mY-NlLo,93696
|
|
115
115
|
tooluniverse/data/alphafold_tools.json,sha256=bNFUKlidqkAF9euRJxX2XXXZ9YfnHg1laDekumH3RTU,14167
|
|
116
116
|
tooluniverse/data/arxiv_tools.json,sha256=v4FNgFMhNX2WBNajje1xpa5250kvifm_RXY1WzPGgFw,2591
|
|
117
117
|
tooluniverse/data/biorxiv_tools.json,sha256=i7iNyLJDRCPlNd6QjQ9Ml0rUwkcBPjXLG3QOa6cT2sI,2007
|
|
@@ -119,7 +119,7 @@ tooluniverse/data/boltz_tools.json,sha256=_pMSRBkO3uj4vjYnQ7H6qbZFa4rzc9Looj6zHR
|
|
|
119
119
|
tooluniverse/data/cellosaurus_tools.json,sha256=JLn0d5BAj9U5bA2Soy9PRsfO4EeSLOK0nlYT_HCJnio,7388
|
|
120
120
|
tooluniverse/data/chembl_tools.json,sha256=e7l7Z2r6EM6QL_DL6UEdtJ5BTJysebxgSZBixeKEL3o,850
|
|
121
121
|
tooluniverse/data/clinicaltrials_gov_tools.json,sha256=2trH2fs6iKrJrazSiNp-nxbTjdjpSohlOpdM4uy8BMQ,14321
|
|
122
|
-
tooluniverse/data/compose_tools.json,sha256=
|
|
122
|
+
tooluniverse/data/compose_tools.json,sha256=3CiMpiFdGNkJDw07CH4M-SU0Kl_xVGAQC376IxmlUtg,11721
|
|
123
123
|
tooluniverse/data/core_tools.json,sha256=UB8aFpPZ5MVIju0OrfjQcJQedTPwCcVNqYNhPs0FmLU,3461
|
|
124
124
|
tooluniverse/data/crossref_tools.json,sha256=oUXs3xHmNBq2ugsjpmQsY1JTRctD_NF6Qx6Yg3I82sk,3975
|
|
125
125
|
tooluniverse/data/dailymed_tools.json,sha256=rWi5pV8EmITq0UJ-MzRQDVzKA2XVmR7v2ItFHCqqdSY,2288
|
|
@@ -127,7 +127,7 @@ tooluniverse/data/dataset_tools.json,sha256=BKf0HAQC9r499fL3S5s0aH0FyDC0V2vawo5u
|
|
|
127
127
|
tooluniverse/data/dblp_tools.json,sha256=_D5zz8ChRJK7XE_YQ2TOrYRz5kFTiuSIkdtKswk7NUQ,4202
|
|
128
128
|
tooluniverse/data/disease_target_score_tools.json,sha256=Z0-Uc_tZG83ToTIQvxe3cV5I2P6xh7eTq0aUpmGmxmo,23399
|
|
129
129
|
tooluniverse/data/doaj_tools.json,sha256=P2A_UM7TdJyEO3gM-TH1dK1ehWKigoTWvxTD1pUTyCY,3915
|
|
130
|
-
tooluniverse/data/drug_discovery_agents.json,sha256=
|
|
130
|
+
tooluniverse/data/drug_discovery_agents.json,sha256=MXtIzEGAtx7LXmSXE55nwtF8uyjMK56Yyz5CNuhFwCQ,18392
|
|
131
131
|
tooluniverse/data/efo_tools.json,sha256=qsEElKp1Z4EX09OD4r1ETcw6jT2t_w32SlDz-v8RyDc,564
|
|
132
132
|
tooluniverse/data/embedding_tools.json,sha256=PKIinGNbM7O2sH_7qFoT1TWkksDtQlk-8sNZL3-_ajM,11393
|
|
133
133
|
tooluniverse/data/enrichr_tools.json,sha256=zUUMFMphgyzX_0xJYK8KDjnFTp4_eoaUN5ZCSyh_7as,1162
|
|
@@ -146,7 +146,7 @@ tooluniverse/data/hal_tools.json,sha256=6-Zk7KKZQDY6w08ixZmNKba6U3Ky1aE1rfsEwuBm
|
|
|
146
146
|
tooluniverse/data/hpa_tools.json,sha256=q96siPOkcEgKjO3VUvdJ3FF5wRr9WR_6rlZeIpHCwVk,17997
|
|
147
147
|
tooluniverse/data/humanbase_tools.json,sha256=bhe5qVwkbFgq5aGlAGgYc4FiLX46YIAjJcqLXQZvhC4,2239
|
|
148
148
|
tooluniverse/data/idmap_tools.json,sha256=ApTXD6RaR7ljIBtHYwHxnvvjuDL8Gz3E1vj6TxNV74s,2830
|
|
149
|
-
tooluniverse/data/literature_search_tools.json,sha256=
|
|
149
|
+
tooluniverse/data/literature_search_tools.json,sha256=nguJ7BTHvkexJUb82lHsDRvPNJVAoBleCyG5CdMe68I,10664
|
|
150
150
|
tooluniverse/data/markitdown_tools.json,sha256=RPYWiJnvnYgIzwuZh649F9ky1VxdHvQ3pQHb8cdN4Oc,1483
|
|
151
151
|
tooluniverse/data/mcp_client_tools_example.json,sha256=5Ug57s25IjvMg29_vOpe4TsVsr0JQdtbwa0nhmj6Mh8,3435
|
|
152
152
|
tooluniverse/data/mcpautoloadertool_defaults.json,sha256=I1Z6Xnno6BRX7u9Ec4LlXlz-384GWpaBafPVHsqTr_c,998
|
|
@@ -154,13 +154,13 @@ tooluniverse/data/medlineplus_tools.json,sha256=J1pE-5nH6LGuZP4lRmiOiec_pgr8Vtg1
|
|
|
154
154
|
tooluniverse/data/medrxiv_tools.json,sha256=Ku4hts720cx9zR7E3oWzlP6nICOocERW174KfV4W5fM,2005
|
|
155
155
|
tooluniverse/data/molecule_2d_tools.json,sha256=EvU07cSVLjl9pEareMvPyeuI9RtFn0dDxsnh8EbsFNI,3919
|
|
156
156
|
tooluniverse/data/molecule_3d_tools.json,sha256=IVmxcynWJdMNDcRIWpS1YrlOQ3iHDSn1_dGZn3OAg-w,4614
|
|
157
|
-
tooluniverse/data/monarch_tools.json,sha256=
|
|
157
|
+
tooluniverse/data/monarch_tools.json,sha256=t-dfYKPmsbJr9_hUPlBYdmCtrI34fmxeYFMn6zQEwZ0,2720
|
|
158
158
|
tooluniverse/data/odphp_tools.json,sha256=9EeqOA2eu54BoDMVqGZkBNcRiTSCFYrNNfW3BhopCsI,19570
|
|
159
159
|
tooluniverse/data/openaire_tools.json,sha256=-epEkMGactUo3BNYQg7ZA4P4mrCQYyOjszkOsxeYPTA,2771
|
|
160
160
|
tooluniverse/data/openalex_tools.json,sha256=v6vMCsg8QOIkssS0dHmiQQhyKf1PFUY-oC60Ss36dEo,3287
|
|
161
|
-
tooluniverse/data/opentarget_tools.json,sha256=
|
|
161
|
+
tooluniverse/data/opentarget_tools.json,sha256=VNegtPOncIRM-bEeKr6T7nSqXKMSY3d8hI3L_n6cw-E,58807
|
|
162
162
|
tooluniverse/data/osf_preprints_tools.json,sha256=KO03NqtCSF3e5ttk0ioTzdSSltTwb6lFVHmWwqY0ewg,2341
|
|
163
|
-
tooluniverse/data/output_summarization_tools.json,sha256=
|
|
163
|
+
tooluniverse/data/output_summarization_tools.json,sha256=_224cQuxV_PFAO8Jp1nBPAGc2G_2bO7_02iXQ2Kyi-U,3731
|
|
164
164
|
tooluniverse/data/pmc_tools.json,sha256=01RsH8y6wF8CdX3hQO4qqTgyGDA7uoJ4bD8H4Ss5MIs,3645
|
|
165
165
|
tooluniverse/data/ppi_tools.json,sha256=tWpPiPbBkvrPFXpn-W1DEXjtuMQrZIcwXrjER37vO0E,4541
|
|
166
166
|
tooluniverse/data/protein_structure_3d_tools.json,sha256=J_BOw3lS8_mAkFxvFSQ7hsxRhtQwMwBdXYk_QNs2LOM,3924
|
|
@@ -171,7 +171,7 @@ tooluniverse/data/rcsb_pdb_tools.json,sha256=rhMg9GztmbBfJUYcvs4_9-BZIMsNZYljSYf
|
|
|
171
171
|
tooluniverse/data/reactome_tools.json,sha256=h8Ubkllr4LMFc8UPUFQ8SZf_-wdWdh_NaHAKhx31Db0,557
|
|
172
172
|
tooluniverse/data/semantic_scholar_tools.json,sha256=1X6zFX38Io7y2bCGUJiveN18Xi328exRCy6qdS2rpO8,1792
|
|
173
173
|
tooluniverse/data/special_tools.json,sha256=nlhyXeqAnzH90GaWxnTptktAcPkZDj5wczzlsgy5bUo,1025
|
|
174
|
-
tooluniverse/data/tool_composition_tools.json,sha256=
|
|
174
|
+
tooluniverse/data/tool_composition_tools.json,sha256=8zFAgAN_vUQ1H-7m0_1RaN_hrPI8Eh0OYptEOduYYco,6062
|
|
175
175
|
tooluniverse/data/toolfinderkeyword_defaults.json,sha256=bydTVd0IUSDiilNQ6kZU-cn4lPqOfInfUAxhh8yMXqY,1050
|
|
176
176
|
tooluniverse/data/txagent_client_tools.json,sha256=GdQk5H6uP_Uj9Ejz3nMdzNhZJV42t75aiRW8oWtkzRw,409
|
|
177
177
|
tooluniverse/data/unified_guideline_tools.json,sha256=SzBhv6MCojmdtV6tGyZ5sUqskrr5zS_SQC5TXowVUAo,30688
|
|
@@ -183,19 +183,19 @@ tooluniverse/data/uspto_tools.json,sha256=yPIMBbwGNaAj0XbHBEGmcRDC8yeE-1OtyNceil
|
|
|
183
183
|
tooluniverse/data/wikidata_sparql_tools.json,sha256=HPHrVszbqZdSGxxdq249N6gFSFe8XW-_pXIXdapfqAE,1830
|
|
184
184
|
tooluniverse/data/xml_tools.json,sha256=C950u2om1lIOeUu2c5MnVWJccVGzjwDdjmelXqfcmz8,111763
|
|
185
185
|
tooluniverse/data/zenodo_tools.json,sha256=iVjjuSHDlbDUCxROPqzbNASkvSGCVj1hXhq56Qd1aC0,2563
|
|
186
|
-
tooluniverse/data/packages/bioinformatics_core_tools.json,sha256=
|
|
186
|
+
tooluniverse/data/packages/bioinformatics_core_tools.json,sha256=LA_zS-7Le41jsBkh7_sFpNEFwSOknQOKYhqoC8v2umk,165309
|
|
187
187
|
tooluniverse/data/packages/categorized_tools.txt,sha256=NweDa6MbgS_4480RuNk-sw9LaxyA05VkzSgIRfvYkLI,4823
|
|
188
|
-
tooluniverse/data/packages/cheminformatics_tools.json,sha256=
|
|
188
|
+
tooluniverse/data/packages/cheminformatics_tools.json,sha256=qZiJ4mYSQPe1oFMh_4zIbrwnqd7hs6nMULtRC-FIwOs,31117
|
|
189
189
|
tooluniverse/data/packages/earth_sciences_tools.json,sha256=qqzphH4QLfX5wEszxI33AfRmo1HjVKmpFJ3P5nXKFsc,1927
|
|
190
|
-
tooluniverse/data/packages/genomics_tools.json,sha256=
|
|
190
|
+
tooluniverse/data/packages/genomics_tools.json,sha256=K3H0WdXne2fm1zMBqE7Y_2eB98j0rN4oMJTZxODUT8Q,48817
|
|
191
191
|
tooluniverse/data/packages/image_processing_tools.json,sha256=Kjpjwy2fAaTMM6mKEgRbtgE2-HUKCvJiqviIxgcTD5g,965
|
|
192
192
|
tooluniverse/data/packages/machine_learning_tools.json,sha256=MAfLNwZy6xvBquiSrYAvUlAIAampkELd75WfjwqzTNw,42149
|
|
193
193
|
tooluniverse/data/packages/neuroscience_tools.json,sha256=SzXmakL7GIldONBlV_kGMG_ov68lkVSY00Ux7Ggo4a0,1538
|
|
194
194
|
tooluniverse/data/packages/original_tools.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
195
|
tooluniverse/data/packages/physics_astronomy_tools.json,sha256=n0ovkqOXhUcDBUPDGNKrCs3NbYJOcnOEADXCafgI4SE,1527
|
|
196
196
|
tooluniverse/data/packages/scientific_computing_tools.json,sha256=7hwzeFkn_MYjfxat1spfaxryRplVDh1lfE3jj-jMiyU,28580
|
|
197
|
-
tooluniverse/data/packages/single_cell_tools.json,sha256=
|
|
198
|
-
tooluniverse/data/packages/structural_biology_tools.json,sha256=
|
|
197
|
+
tooluniverse/data/packages/single_cell_tools.json,sha256=MaZXish9-5Zsbhzbj4sMTtUzLlogi-E1nAt_447SE_k,36347
|
|
198
|
+
tooluniverse/data/packages/structural_biology_tools.json,sha256=z71yIPMKVoE1WUFtZxzH2pg6iHCyszPZmEsXQDM3iUQ,31978
|
|
199
199
|
tooluniverse/data/packages/visualization_tools.json,sha256=SxRkpeqQj5gpouOkNirjG73cFom1_cICkwLc-jH7lV8,25457
|
|
200
200
|
tooluniverse/remote/boltz/boltz_mcp_server.py,sha256=GKqtQp5CkI7RQKHIGBW3z81O8zSl3dG6vD4xmH3lz8w,2102
|
|
201
201
|
tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py,sha256=6G_8MZuohXrt-jMmt8jVEsHHIPgL1IP5vcJHp4Coeb4,18994
|
|
@@ -465,7 +465,6 @@ tooluniverse/tools/MedlinePlus_get_genetics_gene_by_name.py,sha256=6o4HPtrHF7cqc
|
|
|
465
465
|
tooluniverse/tools/MedlinePlus_get_genetics_index.py,sha256=RSpDgVA7lQxIZaKvH0wY3INkOe79nX3sgKXv8XBcflw,1125
|
|
466
466
|
tooluniverse/tools/MedlinePlus_search_topics_by_keyword.py,sha256=Oh7Gl-mSHw4-3EbvJ1LT2Nu3jWrCT2bViroSZuWQSjw,1568
|
|
467
467
|
tooluniverse/tools/MethodologyRigorReviewer.py,sha256=VxW-uelP96-z-j_qFD6G7So1U02_gG25vlR3Ih758eI,1182
|
|
468
|
-
tooluniverse/tools/MultiAgentLiteratureSearch.py,sha256=t-51jgdIcBOcOKUZd_iG6xwOlB5KryUSMYQCP--EveM,1574
|
|
469
468
|
tooluniverse/tools/NICE_Clinical_Guidelines_Search.py,sha256=k7x-aYOJsSI3SUekSXs-Zg7IUQpvqceziN4dtSI2GPk,1419
|
|
470
469
|
tooluniverse/tools/NICE_Guideline_Full_Text.py,sha256=C6OyHfJEurqSgvSAG4ReBSVMq76xzDwHmnPC_XHgap8,1240
|
|
471
470
|
tooluniverse/tools/NoveltySignificanceReviewer.py,sha256=zN7RMKXRM2cnfOwMyo3BbeHKV-PScSOVPJufmqaOK9o,1463
|
|
@@ -589,7 +588,7 @@ tooluniverse/tools/WHO_Guidelines_Search.py,sha256=skaP8MvndBmB8bg9HM3mQjWpFTJFL
|
|
|
589
588
|
tooluniverse/tools/Wikidata_SPARQL_query.py,sha256=7KoUwdza5R9uVOT6TzyU3oshRzUYDO91qqpwJA8PB_8,1426
|
|
590
589
|
tooluniverse/tools/WritingPresentationReviewer.py,sha256=7OiJnRcSWjZSp1lJsM9wxBupdMAeHXNymYev-AWU-iI,1171
|
|
591
590
|
tooluniverse/tools/Zenodo_search_records.py,sha256=PfoUaXvGUCifJqFvlkFei6t8CeiT5BHuiEO7d5WApUE,1638
|
|
592
|
-
tooluniverse/tools/__init__.py,sha256=
|
|
591
|
+
tooluniverse/tools/__init__.py,sha256=TjCVrrE0xDFTZGmXR_FL7_6KpXNLdjB9y9aI8cOd0Ng,78576
|
|
593
592
|
tooluniverse/tools/_shared_client.py,sha256=USiz6n6TD5T42TRasjOvYqUvl8GnDIxzubfiv_U5obE,4839
|
|
594
593
|
tooluniverse/tools/alphafold_get_annotations.py,sha256=QqykC55liO1JyPebtS_fnnAGaJ9niTgex6IL14JplIo,1401
|
|
595
594
|
tooluniverse/tools/alphafold_get_prediction.py,sha256=7W9r_U6ZoZAnMKUBWWZwnaY4WVpMORJxkIdnCiXmBTo,1489
|
|
@@ -883,9 +882,9 @@ tooluniverse/tools/search_clinical_trials.py,sha256=skW3aPZ1gXfjKJz8WkxGpt93XlHp
|
|
|
883
882
|
tooluniverse/tools/visualize_molecule_2d.py,sha256=yaaGErioVPG5qMi8nR6DbZbojJVCUc2mDiO7icBG60U,2462
|
|
884
883
|
tooluniverse/tools/visualize_molecule_3d.py,sha256=0fFkjGz0hrNyRBiXRV_FY8yWXR47jZQXatXLxXwbrXw,2693
|
|
885
884
|
tooluniverse/tools/visualize_protein_structure_3d.py,sha256=ifTkgPvtNtvJ9q8d7zmSqSnd32oFmRcKkoO8p1SdVUU,2358
|
|
886
|
-
tooluniverse-1.0.
|
|
887
|
-
tooluniverse-1.0.
|
|
888
|
-
tooluniverse-1.0.
|
|
889
|
-
tooluniverse-1.0.
|
|
890
|
-
tooluniverse-1.0.
|
|
891
|
-
tooluniverse-1.0.
|
|
885
|
+
tooluniverse-1.0.9.1.dist-info/licenses/LICENSE,sha256=0P0qDClpVzrnQUe3QAu7V-alszSBa-6hVHXyn9Xe60k,11351
|
|
886
|
+
tooluniverse-1.0.9.1.dist-info/METADATA,sha256=UGIL_yWuVAeoD76bILuyj7YGBLqVg2h4cwwH2uaAywQ,21146
|
|
887
|
+
tooluniverse-1.0.9.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
888
|
+
tooluniverse-1.0.9.1.dist-info/entry_points.txt,sha256=SAdqP4tU4mMOtp1YWaOHTwnIHhnoiD1wmfKGlSfNSy0,647
|
|
889
|
+
tooluniverse-1.0.9.1.dist-info/top_level.txt,sha256=zZ8YeCJ5FAkEwdd_mxsFtSCQMBDgBdxrrmHo3RNBiWs,13
|
|
890
|
+
tooluniverse-1.0.9.1.dist-info/RECORD,,
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
[console_scripts]
|
|
2
2
|
generate-mcp-tools = tooluniverse.generate_mcp_tools:run_generate
|
|
3
|
-
tooluniverse-agent-search = tooluniverse.web_tools.literature_search_ui.agent_search_app:main
|
|
4
3
|
tooluniverse-doctor = tooluniverse.doctor:main
|
|
5
4
|
tooluniverse-expert-feedback = tooluniverse.remote.expert_feedback.human_expert_mcp_tools:main
|
|
6
5
|
tooluniverse-expert-feedback-web = tooluniverse.remote.expert_feedback.start_web_interface:main
|
|
7
6
|
tooluniverse-mcp = tooluniverse.smcp_server:run_http_server
|
|
8
7
|
tooluniverse-mcp-claude = tooluniverse.smcp_server:run_stdio_server
|
|
9
|
-
tooluniverse-regular-search = tooluniverse.web_tools.literature_search_ui.regular_search_app:main
|
|
10
8
|
tooluniverse-smcp = tooluniverse.smcp_server:run_smcp_server
|
|
11
9
|
tooluniverse-smcp-server = tooluniverse.smcp_server:run_http_server
|
|
12
10
|
tooluniverse-smcp-stdio = tooluniverse.smcp_server:run_stdio_server
|
|
13
|
-
tooluniverse-wide-research = tooluniverse.web_tools.literature_search_ui.simple_app:main
|