tooluniverse 1.0.10__py3-none-any.whl → 1.0.11.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.

Files changed (151) hide show
  1. tooluniverse/__init__.py +57 -1
  2. tooluniverse/blast_tool.py +132 -0
  3. tooluniverse/boltz_tool.py +2 -2
  4. tooluniverse/cbioportal_tool.py +42 -0
  5. tooluniverse/clinvar_tool.py +268 -74
  6. tooluniverse/compose_scripts/tool_discover.py +1941 -443
  7. tooluniverse/data/agentic_tools.json +0 -370
  8. tooluniverse/data/alphafold_tools.json +6 -6
  9. tooluniverse/data/blast_tools.json +112 -0
  10. tooluniverse/data/cbioportal_tools.json +87 -0
  11. tooluniverse/data/clinvar_tools.json +235 -0
  12. tooluniverse/data/compose_tools.json +0 -89
  13. tooluniverse/data/dbsnp_tools.json +275 -0
  14. tooluniverse/data/emdb_tools.json +61 -0
  15. tooluniverse/data/ensembl_tools.json +259 -0
  16. tooluniverse/data/file_download_tools.json +275 -0
  17. tooluniverse/data/geo_tools.json +200 -48
  18. tooluniverse/data/gnomad_tools.json +109 -0
  19. tooluniverse/data/gtopdb_tools.json +68 -0
  20. tooluniverse/data/gwas_tools.json +32 -0
  21. tooluniverse/data/interpro_tools.json +199 -0
  22. tooluniverse/data/jaspar_tools.json +70 -0
  23. tooluniverse/data/kegg_tools.json +356 -0
  24. tooluniverse/data/mpd_tools.json +87 -0
  25. tooluniverse/data/ols_tools.json +314 -0
  26. tooluniverse/data/package_discovery_tools.json +64 -0
  27. tooluniverse/data/packages/categorized_tools.txt +0 -1
  28. tooluniverse/data/packages/machine_learning_tools.json +0 -47
  29. tooluniverse/data/paleobiology_tools.json +91 -0
  30. tooluniverse/data/pride_tools.json +62 -0
  31. tooluniverse/data/pypi_package_inspector_tools.json +158 -0
  32. tooluniverse/data/python_executor_tools.json +341 -0
  33. tooluniverse/data/regulomedb_tools.json +50 -0
  34. tooluniverse/data/remap_tools.json +89 -0
  35. tooluniverse/data/screen_tools.json +89 -0
  36. tooluniverse/data/tool_discovery_agents.json +428 -0
  37. tooluniverse/data/tool_discovery_agents.json.backup +1343 -0
  38. tooluniverse/data/uniprot_tools.json +77 -0
  39. tooluniverse/data/web_search_tools.json +250 -0
  40. tooluniverse/data/worms_tools.json +55 -0
  41. tooluniverse/dbsnp_tool.py +196 -58
  42. tooluniverse/default_config.py +35 -2
  43. tooluniverse/emdb_tool.py +30 -0
  44. tooluniverse/ensembl_tool.py +140 -47
  45. tooluniverse/execute_function.py +78 -14
  46. tooluniverse/file_download_tool.py +269 -0
  47. tooluniverse/geo_tool.py +81 -28
  48. tooluniverse/gnomad_tool.py +100 -52
  49. tooluniverse/gtopdb_tool.py +41 -0
  50. tooluniverse/interpro_tool.py +72 -0
  51. tooluniverse/jaspar_tool.py +30 -0
  52. tooluniverse/kegg_tool.py +230 -0
  53. tooluniverse/mpd_tool.py +42 -0
  54. tooluniverse/ncbi_eutils_tool.py +96 -0
  55. tooluniverse/ols_tool.py +435 -0
  56. tooluniverse/package_discovery_tool.py +217 -0
  57. tooluniverse/paleobiology_tool.py +30 -0
  58. tooluniverse/pride_tool.py +30 -0
  59. tooluniverse/pypi_package_inspector_tool.py +593 -0
  60. tooluniverse/python_executor_tool.py +711 -0
  61. tooluniverse/regulomedb_tool.py +30 -0
  62. tooluniverse/remap_tool.py +44 -0
  63. tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +1 -1
  64. tooluniverse/screen_tool.py +44 -0
  65. tooluniverse/smcp.py +10 -2
  66. tooluniverse/smcp_server.py +3 -3
  67. tooluniverse/tool_finder_embedding.py +3 -1
  68. tooluniverse/tool_finder_keyword.py +3 -1
  69. tooluniverse/tool_finder_llm.py +6 -2
  70. tooluniverse/tools/{UCSC_get_genes_by_region.py → BLAST_nucleotide_search.py} +22 -26
  71. tooluniverse/tools/BLAST_protein_search.py +63 -0
  72. tooluniverse/tools/ClinVar_search_variants.py +26 -15
  73. tooluniverse/tools/CodeQualityAnalyzer.py +3 -3
  74. tooluniverse/tools/EMDB_get_structure.py +46 -0
  75. tooluniverse/tools/GtoPdb_get_targets.py +52 -0
  76. tooluniverse/tools/InterPro_get_domain_details.py +46 -0
  77. tooluniverse/tools/InterPro_get_protein_domains.py +49 -0
  78. tooluniverse/tools/InterPro_search_domains.py +52 -0
  79. tooluniverse/tools/JASPAR_get_transcription_factors.py +52 -0
  80. tooluniverse/tools/MPD_get_phenotype_data.py +59 -0
  81. tooluniverse/tools/PRIDE_search_proteomics.py +52 -0
  82. tooluniverse/tools/PackageAnalyzer.py +55 -0
  83. tooluniverse/tools/Paleobiology_get_fossils.py +52 -0
  84. tooluniverse/tools/PyPIPackageInspector.py +59 -0
  85. tooluniverse/tools/ReMap_get_transcription_factor_binding.py +59 -0
  86. tooluniverse/tools/ReferenceInfoAnalyzer.py +55 -0
  87. tooluniverse/tools/RegulomeDB_query_variant.py +46 -0
  88. tooluniverse/tools/SCREEN_get_regulatory_elements.py +59 -0
  89. tooluniverse/tools/{ArgumentDescriptionOptimizer.py → TestResultsAnalyzer.py} +13 -13
  90. tooluniverse/tools/ToolDiscover.py +11 -11
  91. tooluniverse/tools/UniProt_id_mapping.py +63 -0
  92. tooluniverse/tools/UniProt_search.py +63 -0
  93. tooluniverse/tools/UnifiedToolGenerator.py +59 -0
  94. tooluniverse/tools/WoRMS_search_species.py +49 -0
  95. tooluniverse/tools/XMLToolOptimizer.py +55 -0
  96. tooluniverse/tools/__init__.py +119 -29
  97. tooluniverse/tools/alphafold_get_annotations.py +3 -3
  98. tooluniverse/tools/alphafold_get_prediction.py +3 -3
  99. tooluniverse/tools/alphafold_get_summary.py +3 -3
  100. tooluniverse/tools/cBioPortal_get_cancer_studies.py +46 -0
  101. tooluniverse/tools/cBioPortal_get_mutations.py +52 -0
  102. tooluniverse/tools/{gnomAD_query_variant.py → clinvar_get_clinical_significance.py} +8 -11
  103. tooluniverse/tools/clinvar_get_variant_details.py +49 -0
  104. tooluniverse/tools/dbSNP_get_variant_by_rsid.py +7 -7
  105. tooluniverse/tools/dbsnp_get_frequencies.py +46 -0
  106. tooluniverse/tools/dbsnp_search_by_gene.py +52 -0
  107. tooluniverse/tools/download_binary_file.py +66 -0
  108. tooluniverse/tools/download_file.py +71 -0
  109. tooluniverse/tools/download_text_content.py +55 -0
  110. tooluniverse/tools/dynamic_package_discovery.py +59 -0
  111. tooluniverse/tools/ensembl_get_sequence.py +52 -0
  112. tooluniverse/tools/{Ensembl_lookup_gene_by_symbol.py → ensembl_get_variants.py} +11 -11
  113. tooluniverse/tools/ensembl_lookup_gene.py +46 -0
  114. tooluniverse/tools/geo_get_dataset_info.py +46 -0
  115. tooluniverse/tools/geo_get_sample_info.py +46 -0
  116. tooluniverse/tools/geo_search_datasets.py +67 -0
  117. tooluniverse/tools/gnomad_get_gene_constraints.py +49 -0
  118. tooluniverse/tools/kegg_find_genes.py +52 -0
  119. tooluniverse/tools/kegg_get_gene_info.py +46 -0
  120. tooluniverse/tools/kegg_get_pathway_info.py +46 -0
  121. tooluniverse/tools/kegg_list_organisms.py +44 -0
  122. tooluniverse/tools/kegg_search_pathway.py +46 -0
  123. tooluniverse/tools/ols_find_similar_terms.py +63 -0
  124. tooluniverse/tools/{get_hyperopt_info.py → ols_get_ontology_info.py} +13 -10
  125. tooluniverse/tools/ols_get_term_ancestors.py +67 -0
  126. tooluniverse/tools/ols_get_term_children.py +67 -0
  127. tooluniverse/tools/{TestCaseGenerator.py → ols_get_term_info.py} +12 -9
  128. tooluniverse/tools/{CodeOptimizer.py → ols_search_ontologies.py} +22 -14
  129. tooluniverse/tools/ols_search_terms.py +71 -0
  130. tooluniverse/tools/python_code_executor.py +79 -0
  131. tooluniverse/tools/python_script_runner.py +79 -0
  132. tooluniverse/tools/web_api_documentation_search.py +63 -0
  133. tooluniverse/tools/web_search.py +71 -0
  134. tooluniverse/uniprot_tool.py +219 -16
  135. tooluniverse/url_tool.py +18 -0
  136. tooluniverse/utils.py +2 -2
  137. tooluniverse/web_search_tool.py +229 -0
  138. tooluniverse/worms_tool.py +64 -0
  139. {tooluniverse-1.0.10.dist-info → tooluniverse-1.0.11.1.dist-info}/METADATA +3 -2
  140. {tooluniverse-1.0.10.dist-info → tooluniverse-1.0.11.1.dist-info}/RECORD +144 -55
  141. tooluniverse/data/genomics_tools.json +0 -174
  142. tooluniverse/tools/ToolDescriptionOptimizer.py +0 -67
  143. tooluniverse/tools/ToolImplementationGenerator.py +0 -67
  144. tooluniverse/tools/ToolOptimizer.py +0 -59
  145. tooluniverse/tools/ToolSpecificationGenerator.py +0 -67
  146. tooluniverse/tools/ToolSpecificationOptimizer.py +0 -63
  147. tooluniverse/ucsc_tool.py +0 -60
  148. {tooluniverse-1.0.10.dist-info → tooluniverse-1.0.11.1.dist-info}/WHEEL +0 -0
  149. {tooluniverse-1.0.10.dist-info → tooluniverse-1.0.11.1.dist-info}/entry_points.txt +0 -0
  150. {tooluniverse-1.0.10.dist-info → tooluniverse-1.0.11.1.dist-info}/licenses/LICENSE +0 -0
  151. {tooluniverse-1.0.10.dist-info → tooluniverse-1.0.11.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,87 @@
1
+ [
2
+ {
3
+ "type": "MPDRESTTool",
4
+ "name": "MPD_get_phenotype_data",
5
+ "description": "Get mouse phenotype data from Mouse Phenome Database for specific strains and phenotypes",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "strain": {
10
+ "type": "string",
11
+ "description": "Mouse strain (e.g., C57BL/6J, BALB/c, DBA/2J)",
12
+ "default": "C57BL/6J"
13
+ },
14
+ "phenotype_category": {
15
+ "type": "string",
16
+ "description": "Phenotype category (behavior, physiology, morphology)",
17
+ "default": "behavior"
18
+ },
19
+ "limit": {
20
+ "type": "integer",
21
+ "description": "Number of results to return",
22
+ "default": 10,
23
+ "minimum": 1,
24
+ "maximum": 50
25
+ }
26
+ },
27
+ "required": [
28
+ "strain"
29
+ ]
30
+ },
31
+ "fields": {
32
+ "endpoint": "https://www.encodeproject.org/search/?type=Experiment&biosample_ontology.term_name={strain}&biosample_ontology.classification=primary_cell&format=json&limit={limit}",
33
+ "return_format": "JSON"
34
+ },
35
+ "return_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "phenotype_data": {
39
+ "type": "array",
40
+ "items": {
41
+ "type": "object",
42
+ "properties": {
43
+ "accession": {
44
+ "type": "string"
45
+ },
46
+ "assay_title": {
47
+ "type": "string"
48
+ },
49
+ "biosample_ontology": {
50
+ "type": "object"
51
+ },
52
+ "description": {
53
+ "type": "string"
54
+ }
55
+ }
56
+ }
57
+ },
58
+ "strain": {
59
+ "type": "string"
60
+ },
61
+ "phenotype_category": {
62
+ "type": "string"
63
+ },
64
+ "count": {
65
+ "type": "integer"
66
+ }
67
+ }
68
+ },
69
+ "test_examples": [
70
+ {
71
+ "strain": "C57BL/6J",
72
+ "phenotype_category": "behavior",
73
+ "limit": 5
74
+ },
75
+ {
76
+ "strain": "BALB/c",
77
+ "phenotype_category": "physiology",
78
+ "limit": 3
79
+ },
80
+ {
81
+ "strain": "DBA/2J",
82
+ "phenotype_category": "morphology",
83
+ "limit": 5
84
+ }
85
+ ]
86
+ }
87
+ ]
@@ -0,0 +1,314 @@
1
+ [
2
+ {
3
+ "type": "OLSTool",
4
+ "name": "ols_search_terms",
5
+ "description": "Search for terms in OLS (Ontology Lookup Service)",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "operation": {
10
+ "type": "string",
11
+ "const": "search_terms",
12
+ "description": "The operation to perform (search_terms)"
13
+ },
14
+ "query": {
15
+ "type": "string",
16
+ "description": "The search query for terms"
17
+ },
18
+ "rows": {
19
+ "type": "integer",
20
+ "description": "Number of results to return (default: 10)",
21
+ "default": 10
22
+ },
23
+ "ontology": {
24
+ "type": "string",
25
+ "description": "Filter by specific ontology (optional)"
26
+ },
27
+ "exact_match": {
28
+ "type": "boolean",
29
+ "description": "Search for exact matches only (default: false)",
30
+ "default": false
31
+ },
32
+ "include_obsolete": {
33
+ "type": "boolean",
34
+ "description": "Include obsolete terms (default: false)",
35
+ "default": false
36
+ }
37
+ },
38
+ "required": ["operation", "query"]
39
+ },
40
+ "examples": [
41
+ {
42
+ "description": "Search for disease terms",
43
+ "arguments": {
44
+ "operation": "search_terms",
45
+ "query": "diabetes",
46
+ "rows": 10
47
+ }
48
+ },
49
+ {
50
+ "description": "Search for exact term in specific ontology",
51
+ "arguments": {
52
+ "operation": "search_terms",
53
+ "query": "cancer",
54
+ "ontology": "efo",
55
+ "exact_match": true
56
+ }
57
+ }
58
+ ],
59
+ "tags": ["ontology", "search", "ebi", "ols"],
60
+ "author": "EBI OLS",
61
+ "version": "1.0.0"
62
+ },
63
+ {
64
+ "type": "OLSTool",
65
+ "name": "ols_get_ontology_info",
66
+ "description": "Get detailed information about an ontology",
67
+ "parameter": {
68
+ "type": "object",
69
+ "properties": {
70
+ "operation": {
71
+ "type": "string",
72
+ "const": "get_ontology_info",
73
+ "description": "The operation to perform (get_ontology_info)"
74
+ },
75
+ "ontology_id": {
76
+ "type": "string",
77
+ "description": "The ID of the ontology to retrieve"
78
+ }
79
+ },
80
+ "required": ["operation", "ontology_id"]
81
+ },
82
+ "examples": [
83
+ {
84
+ "description": "Get information about the EFO ontology",
85
+ "arguments": {
86
+ "operation": "get_ontology_info",
87
+ "ontology_id": "efo"
88
+ }
89
+ }
90
+ ],
91
+ "tags": ["ontology", "metadata", "ebi", "ols"],
92
+ "author": "EBI OLS",
93
+ "version": "1.0.0"
94
+ },
95
+ {
96
+ "type": "OLSTool",
97
+ "name": "ols_search_ontologies",
98
+ "description": "Search for ontologies in OLS",
99
+ "parameter": {
100
+ "type": "object",
101
+ "properties": {
102
+ "operation": {
103
+ "type": "string",
104
+ "const": "search_ontologies",
105
+ "description": "The operation to perform (search_ontologies)"
106
+ },
107
+ "search": {
108
+ "type": "string",
109
+ "description": "Search query for ontologies (optional)"
110
+ },
111
+ "page": {
112
+ "type": "integer",
113
+ "description": "Page number (default: 0)",
114
+ "default": 0
115
+ },
116
+ "size": {
117
+ "type": "integer",
118
+ "description": "Number of results per page (default: 20)",
119
+ "default": 20
120
+ }
121
+ },
122
+ "required": ["operation"]
123
+ },
124
+ "examples": [
125
+ {
126
+ "description": "Search all ontologies",
127
+ "arguments": {
128
+ "operation": "search_ontologies"
129
+ }
130
+ },
131
+ {
132
+ "description": "Search for disease-related ontologies",
133
+ "arguments": {
134
+ "operation": "search_ontologies",
135
+ "search": "disease",
136
+ "size": 10
137
+ }
138
+ }
139
+ ],
140
+ "tags": ["ontology", "search", "ebi", "ols"],
141
+ "author": "EBI OLS",
142
+ "version": "1.0.0"
143
+ },
144
+ {
145
+ "type": "OLSTool",
146
+ "name": "ols_get_term_info",
147
+ "description": "Get detailed information about a specific term in OLS",
148
+ "parameter": {
149
+ "type": "object",
150
+ "properties": {
151
+ "operation": {
152
+ "type": "string",
153
+ "const": "get_term_info",
154
+ "description": "The operation to perform (get_term_info)"
155
+ },
156
+ "id": {
157
+ "type": "string",
158
+ "description": "The ID or IRI of the term to retrieve"
159
+ }
160
+ },
161
+ "required": ["operation", "id"]
162
+ },
163
+ "examples": [
164
+ {
165
+ "description": "Get term information by ID",
166
+ "arguments": {
167
+ "operation": "get_term_info",
168
+ "id": "EFO:0000408"
169
+ }
170
+ }
171
+ ],
172
+ "tags": ["ontology", "term", "metadata", "ebi", "ols"],
173
+ "author": "EBI OLS",
174
+ "version": "1.0.0"
175
+ },
176
+ {
177
+ "type": "OLSTool",
178
+ "name": "ols_get_term_children",
179
+ "description": "Get child terms of a specific term in an ontology",
180
+ "parameter": {
181
+ "type": "object",
182
+ "properties": {
183
+ "operation": {
184
+ "type": "string",
185
+ "const": "get_term_children",
186
+ "description": "The operation to perform (get_term_children)"
187
+ },
188
+ "term_iri": {
189
+ "type": "string",
190
+ "description": "The IRI of the term to retrieve children for"
191
+ },
192
+ "ontology": {
193
+ "type": "string",
194
+ "description": "The ontology ID"
195
+ },
196
+ "include_obsolete": {
197
+ "type": "boolean",
198
+ "description": "Include obsolete terms (default: false)",
199
+ "default": false
200
+ },
201
+ "size": {
202
+ "type": "integer",
203
+ "description": "Number of results to return (default: 20)",
204
+ "default": 20
205
+ }
206
+ },
207
+ "required": ["operation", "term_iri", "ontology"]
208
+ },
209
+ "examples": [
210
+ {
211
+ "description": "Get child terms",
212
+ "arguments": {
213
+ "operation": "get_term_children",
214
+ "term_iri": "http://www.ebi.ac.uk/efo/EFO_0000408",
215
+ "ontology": "efo",
216
+ "size": 10
217
+ }
218
+ }
219
+ ],
220
+ "tags": ["ontology", "hierarchy", "term", "ebi", "ols"],
221
+ "author": "EBI OLS",
222
+ "version": "1.0.0"
223
+ },
224
+ {
225
+ "type": "OLSTool",
226
+ "name": "ols_get_term_ancestors",
227
+ "description": "Get ancestor terms of a specific term in an ontology",
228
+ "parameter": {
229
+ "type": "object",
230
+ "properties": {
231
+ "operation": {
232
+ "type": "string",
233
+ "const": "get_term_ancestors",
234
+ "description": "The operation to perform (get_term_ancestors)"
235
+ },
236
+ "term_iri": {
237
+ "type": "string",
238
+ "description": "The IRI of the term to retrieve ancestors for"
239
+ },
240
+ "ontology": {
241
+ "type": "string",
242
+ "description": "The ontology ID"
243
+ },
244
+ "include_obsolete": {
245
+ "type": "boolean",
246
+ "description": "Include obsolete terms (default: false)",
247
+ "default": false
248
+ },
249
+ "size": {
250
+ "type": "integer",
251
+ "description": "Number of results to return (default: 20)",
252
+ "default": 20
253
+ }
254
+ },
255
+ "required": ["operation", "term_iri", "ontology"]
256
+ },
257
+ "examples": [
258
+ {
259
+ "description": "Get ancestor terms",
260
+ "arguments": {
261
+ "operation": "get_term_ancestors",
262
+ "term_iri": "http://www.ebi.ac.uk/efo/EFO_0000408",
263
+ "ontology": "efo"
264
+ }
265
+ }
266
+ ],
267
+ "tags": ["ontology", "hierarchy", "term", "ebi", "ols"],
268
+ "author": "EBI OLS",
269
+ "version": "1.0.0"
270
+ },
271
+ {
272
+ "type": "OLSTool",
273
+ "name": "ols_find_similar_terms",
274
+ "description": "Find similar terms using LLM-based similarity",
275
+ "parameter": {
276
+ "type": "object",
277
+ "properties": {
278
+ "operation": {
279
+ "type": "string",
280
+ "const": "find_similar_terms",
281
+ "description": "The operation to perform (find_similar_terms)"
282
+ },
283
+ "term_iri": {
284
+ "type": "string",
285
+ "description": "The IRI of the term to find similar terms for"
286
+ },
287
+ "ontology": {
288
+ "type": "string",
289
+ "description": "The ontology ID"
290
+ },
291
+ "size": {
292
+ "type": "integer",
293
+ "description": "Number of similar terms to return (default: 10)",
294
+ "default": 10
295
+ }
296
+ },
297
+ "required": ["operation", "term_iri", "ontology"]
298
+ },
299
+ "examples": [
300
+ {
301
+ "description": "Find similar terms using LLM",
302
+ "arguments": {
303
+ "operation": "find_similar_terms",
304
+ "term_iri": "http://www.ebi.ac.uk/efo/EFO_0000408",
305
+ "ontology": "efo",
306
+ "size": 5
307
+ }
308
+ }
309
+ ],
310
+ "tags": ["ontology", "similarity", "llm", "ebi", "ols"],
311
+ "author": "EBI OLS",
312
+ "version": "1.0.0"
313
+ }
314
+ ]
@@ -0,0 +1,64 @@
1
+ [
2
+ {
3
+ "type": "DynamicPackageDiscovery",
4
+ "name": "dynamic_package_discovery",
5
+ "description": "Dynamically searches PyPI and evaluates packages based on requirements",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "requirements": {
10
+ "type": "string",
11
+ "description": "Description of what the package should do"
12
+ },
13
+ "functionality": {
14
+ "type": "string",
15
+ "description": "Specific functionality needed"
16
+ },
17
+ "constraints": {
18
+ "type": "object",
19
+ "description": "Constraints (python version, license, etc.)"
20
+ }
21
+ },
22
+ "required": ["requirements"]
23
+ },
24
+ "return_schema": {
25
+ "type": "object",
26
+ "properties": {
27
+ "status": {"type": "string"},
28
+ "candidates": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "object",
32
+ "properties": {
33
+ "name": {"type": "string"},
34
+ "version": {"type": "string"},
35
+ "quality_score": {"type": "number"},
36
+ "reasoning": {"type": "string"},
37
+ "description": {"type": "string"},
38
+ "has_docs": {"type": "boolean"},
39
+ "is_stable": {"type": "boolean"}
40
+ }
41
+ }
42
+ },
43
+ "recommendation": {"type": "object"},
44
+ "total_evaluated": {"type": "integer"}
45
+ },
46
+ "required": ["status", "candidates"]
47
+ },
48
+ "test_examples": [
49
+ {
50
+ "input": {
51
+ "requirements": "data analysis and visualization",
52
+ "functionality": "create charts and graphs"
53
+ },
54
+ "expected_output_type": "object",
55
+ "description": "Search for data visualization packages"
56
+ }
57
+ ],
58
+ "metadata": {
59
+ "tags": ["package-discovery", "pypi", "dynamic"],
60
+ "difficulty_level": "intermediate",
61
+ "estimated_execution_time": "5-15 seconds"
62
+ }
63
+ }
64
+ ]
@@ -103,7 +103,6 @@
103
103
  "name": "get_h5py_info"
104
104
  "name": "get_harmony_pytorch_info"
105
105
  "name": "get_hmmlearn_info"
106
- "name": "get_hyperopt_info"
107
106
  "name": "get_igraph_info"
108
107
  "name": "get_jcvi_info"
109
108
  "name": "get_khmer_info"
@@ -141,53 +141,6 @@
141
141
  ]
142
142
  }
143
143
  },
144
- {
145
- "type": "PackageTool",
146
- "name": "get_hyperopt_info",
147
- "description": "Get comprehensive information about Hyperopt – distributed hyperparameter optimization",
148
- "parameter": {
149
- "type": "object",
150
- "properties": {
151
- "include_examples": {
152
- "type": "boolean",
153
- "description": "Whether to include usage examples and quick start guide",
154
- "default": true
155
- }
156
- },
157
- "required": [
158
- "include_examples"
159
- ]
160
- },
161
- "package_name": "hyperopt",
162
- "local_info": {
163
- "name": "Hyperopt",
164
- "description": "Python library for hyperparameter optimization using algorithms like random search, Tree of Parzen Estimators (TPE), and adaptive TPE. Supports distributed optimization across multiple cores/machines.",
165
- "category": "Machine Learning Optimization",
166
- "import_name": "hyperopt",
167
- "popularity": 85,
168
- "keywords": [
169
- "hyperparameter optimization",
170
- "Bayesian optimization",
171
- "TPE",
172
- "distributed computing",
173
- "model tuning"
174
- ],
175
- "documentation": "http://hyperopt.github.io/hyperopt/",
176
- "repository": "https://github.com/hyperopt/hyperopt",
177
- "installation": {
178
- "pip": "pip install hyperopt",
179
- "conda": "conda install -c conda-forge hyperopt"
180
- },
181
- "usage_example": "from hyperopt import fmin, tpe, hp, STATUS_OK, Trials\nfrom sklearn.ensemble import RandomForestClassifier\nfrom sklearn.model_selection import cross_val_score\n\n# Define search space\nspace = {\n 'n_estimators': hp.choice('n_estimators', [10, 50, 100, 200]),\n 'max_depth': hp.choice('max_depth', [3, 5, 10, None])\n}\n\n# Objective function\ndef objective(params):\n clf = RandomForestClassifier(**params)\n score = cross_val_score(clf, X, y, cv=3).mean()\n return {'loss': -score, 'status': STATUS_OK}\n\n# Optimize\ntrials = Trials()\nbest = fmin(objective, space, algo=tpe.suggest, max_evals=100, trials=trials)",
182
- "quick_start": [
183
- "Install: pip install hyperopt",
184
- "Import: from hyperopt import fmin, tpe, hp",
185
- "Define space: space = {'param': hp.choice('param', [1, 2, 3])}",
186
- "Define objective: def objective(params): return loss",
187
- "Optimize: best = fmin(objective, space, algo=tpe.suggest)"
188
- ]
189
- }
190
- },
191
144
  {
192
145
  "type": "PackageTool",
193
146
  "name": "get_umap_learn_info",
@@ -0,0 +1,91 @@
1
+ [
2
+ {
3
+ "type": "PaleobiologyRESTTool",
4
+ "name": "Paleobiology_get_fossils",
5
+ "description": "Get fossil records from Paleobiology Database",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "taxon": {"type": "string", "description": "Taxon name"},
10
+ "limit": {"type": "integer", "default": 20, "description": "Number of results"}
11
+ },
12
+ "required": ["taxon"]
13
+ },
14
+ "fields": {
15
+ "endpoint": "https://paleobiodb.org/data1.2/occs/list.json?taxon_name={taxon}&limit={limit}",
16
+ "return_format": "JSON"
17
+ },
18
+ "return_schema": {
19
+ "type": "object",
20
+ "properties": {
21
+ "records": {
22
+ "type": "array",
23
+ "items": {
24
+ "type": "object",
25
+ "properties": {
26
+ "occurrence_no": {"type": "string"},
27
+ "record_type": {"type": "string"},
28
+ "reid_no": {"type": "string"},
29
+ "flags": {"type": "string"},
30
+ "collection_no": {"type": "string"},
31
+ "identified_name": {"type": "string"},
32
+ "identified_rank": {"type": "string"},
33
+ "identified_no": {"type": "string"},
34
+ "accepted_name": {"type": "string"},
35
+ "accepted_rank": {"type": "string"},
36
+ "accepted_no": {"type": "string"},
37
+ "early_interval": {"type": "string"},
38
+ "late_interval": {"type": "string"},
39
+ "early_age": {"type": "number"},
40
+ "late_age": {"type": "number"},
41
+ "reference_no": {"type": "string"},
42
+ "is_representative": {"type": "string"},
43
+ "formation": {"type": "string"},
44
+ "member": {"type": "string"},
45
+ "lithology": {"type": "string"},
46
+ "lithology1": {"type": "string"},
47
+ "lithology2": {"type": "string"},
48
+ "environment": {"type": "string"},
49
+ "taphonomy": {"type": "string"},
50
+ "preservation": {"type": "string"},
51
+ "lithadj1": {"type": "string"},
52
+ "lithadj2": {"type": "string"},
53
+ "geogscale": {"type": "string"},
54
+ "geogname": {"type": "string"},
55
+ "state": {"type": "string"},
56
+ "county": {"type": "string"},
57
+ "lat": {"type": "number"},
58
+ "lng": {"type": "number"},
59
+ "geogcomments": {"type": "string"},
60
+ "collection_name": {"type": "string"},
61
+ "collection_aka": {"type": "string"},
62
+ "collection_type": {"type": "string"},
63
+ "collection_comments": {"type": "string"},
64
+ "stratscale": {"type": "string"},
65
+ "stratcomments": {"type": "string"},
66
+ "lithadjcomments": {"type": "string"},
67
+ "geogcomments": {"type": "string"},
68
+ "taxonomy": {
69
+ "type": "object",
70
+ "properties": {
71
+ "phylum": {"type": "string"},
72
+ "class": {"type": "string"},
73
+ "order": {"type": "string"},
74
+ "family": {"type": "string"},
75
+ "genus": {"type": "string"},
76
+ "species": {"type": "string"}
77
+ }
78
+ }
79
+ }
80
+ }
81
+ },
82
+ "count": {"type": "integer"},
83
+ "status": {"type": "string"}
84
+ }
85
+ },
86
+ "test_examples": [
87
+ {"taxon": "Tyrannosaurus", "limit": 5},
88
+ {"taxon": "Trilobita", "limit": 10}
89
+ ]
90
+ }
91
+ ]
@@ -0,0 +1,62 @@
1
+ [
2
+ {
3
+ "type": "PRIDERESTTool",
4
+ "name": "PRIDE_search_proteomics",
5
+ "description": "Search PRIDE proteomics database for experiments",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "query": {"type": "string", "description": "Search query"},
10
+ "page_size": {"type": "integer", "default": 20, "description": "Results per page"}
11
+ },
12
+ "required": ["query"]
13
+ },
14
+ "fields": {
15
+ "endpoint": "https://www.ebi.ac.uk/pride/ws/archive/v2/projects?query={query}&pageSize={page_size}",
16
+ "return_format": "JSON"
17
+ },
18
+ "return_schema": {
19
+ "type": "object",
20
+ "properties": {
21
+ "content": {
22
+ "type": "array",
23
+ "items": {
24
+ "type": "object",
25
+ "properties": {
26
+ "accession": {"type": "string"},
27
+ "title": {"type": "string"},
28
+ "description": {"type": "string"},
29
+ "species": {"type": "array"},
30
+ "tissues": {"type": "array"},
31
+ "diseases": {"type": "array"},
32
+ "instruments": {"type": "array"},
33
+ "submissionDate": {"type": "string"},
34
+ "publicationDate": {"type": "string"},
35
+ "numAssays": {"type": "integer"},
36
+ "numSamples": {"type": "integer"},
37
+ "numFiles": {"type": "integer"},
38
+ "fileSize": {"type": "integer"},
39
+ "labHead": {"type": "object"},
40
+ "submitters": {"type": "array"},
41
+ "keywords": {"type": "array"},
42
+ "projectTags": {"type": "array"}
43
+ }
44
+ }
45
+ },
46
+ "pageInfo": {
47
+ "type": "object",
48
+ "properties": {
49
+ "page": {"type": "integer"},
50
+ "size": {"type": "integer"},
51
+ "totalElements": {"type": "integer"},
52
+ "totalPages": {"type": "integer"}
53
+ }
54
+ }
55
+ }
56
+ },
57
+ "test_examples": [
58
+ {"query": "cancer", "page_size": 5},
59
+ {"query": "COVID-19", "page_size": 10}
60
+ ]
61
+ }
62
+ ]