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,199 @@
1
+ [
2
+ {
3
+ "type": "InterProRESTTool",
4
+ "name": "InterPro_get_protein_domains",
5
+ "description": "Get protein domain annotations from InterPro database using UniProt protein ID. Returns domain families, signatures, and functional annotations.",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "protein_id": {
10
+ "type": "string",
11
+ "description": "UniProt protein ID (e.g., P05067, Q9Y6K9)"
12
+ }
13
+ },
14
+ "required": ["protein_id"]
15
+ },
16
+ "fields": {
17
+ "endpoint": "https://www.ebi.ac.uk/interpro/api/entry/interpro/protein/UniProt/{protein_id}",
18
+ "extract_path": "results",
19
+ "return_format": "JSON"
20
+ },
21
+ "return_schema": {
22
+ "type": "array",
23
+ "description": "List of InterPro entries for the protein",
24
+ "items": {
25
+ "type": "object",
26
+ "properties": {
27
+ "metadata": {
28
+ "type": "object",
29
+ "properties": {
30
+ "accession": {"type": "string"},
31
+ "name": {"type": "string"},
32
+ "type": {"type": "string"},
33
+ "source_database": {"type": "string"},
34
+ "integrated": {"type": "string"},
35
+ "member_databases": {"type": "object"},
36
+ "go_terms": {
37
+ "type": "array",
38
+ "items": {
39
+ "type": "object",
40
+ "properties": {
41
+ "identifier": {"type": "string"},
42
+ "name": {"type": "string"},
43
+ "category": {
44
+ "type": "object",
45
+ "properties": {
46
+ "code": {"type": "string"},
47
+ "name": {"type": "string"}
48
+ }
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
54
+ },
55
+ "proteins": {
56
+ "type": "array",
57
+ "items": {
58
+ "type": "object",
59
+ "properties": {
60
+ "accession": {"type": "string"},
61
+ "protein_length": {"type": "integer"},
62
+ "source_database": {"type": "string"},
63
+ "organism": {"type": "string"},
64
+ "in_alphafold": {"type": "boolean"},
65
+ "in_bfvd": {"type": "boolean"},
66
+ "entry_protein_locations": {
67
+ "type": "array",
68
+ "items": {
69
+ "type": "object",
70
+ "properties": {
71
+ "fragments": {"type": "array"},
72
+ "representative": {"type": "boolean"},
73
+ "model": {"type": "string"},
74
+ "score": {"type": "number"}
75
+ }
76
+ }
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+ },
84
+ "test_examples": [
85
+ {
86
+ "protein_id": "P05067"
87
+ },
88
+ {
89
+ "protein_id": "Q9Y6K9"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "type": "InterProRESTTool",
95
+ "name": "InterPro_search_domains",
96
+ "description": "Search InterPro database for protein domains and families by name or accession. Returns matching domain entries with metadata.",
97
+ "parameter": {
98
+ "type": "object",
99
+ "properties": {
100
+ "query": {
101
+ "type": "string",
102
+ "description": "Domain name, accession, or search term (e.g., 'kinase', 'IPR000719')"
103
+ },
104
+ "size": {
105
+ "type": "integer",
106
+ "description": "Number of results to return (default: 20, max: 100)",
107
+ "default": 20,
108
+ "minimum": 1,
109
+ "maximum": 100
110
+ }
111
+ },
112
+ "required": ["query"]
113
+ },
114
+ "fields": {
115
+ "endpoint": "https://www.ebi.ac.uk/interpro/api/entry/interpro/search?query={query}&size={size}",
116
+ "extract_path": "results",
117
+ "return_format": "JSON"
118
+ },
119
+ "return_schema": {
120
+ "type": "array",
121
+ "description": "List of matching InterPro entries",
122
+ "items": {
123
+ "type": "object",
124
+ "properties": {
125
+ "metadata": {
126
+ "type": "object",
127
+ "properties": {
128
+ "accession": {"type": "string"},
129
+ "name": {"type": "string"},
130
+ "type": {"type": "string"},
131
+ "source_database": {"type": "string"}
132
+ }
133
+ }
134
+ }
135
+ }
136
+ },
137
+ "test_examples": [
138
+ {
139
+ "query": "kinase",
140
+ "size": 5
141
+ },
142
+ {
143
+ "query": "IPR000719",
144
+ "size": 1
145
+ }
146
+ ]
147
+ },
148
+ {
149
+ "type": "InterProRESTTool",
150
+ "name": "InterPro_get_domain_details",
151
+ "description": "Get detailed information about a specific InterPro domain entry including description, hierarchy, and member databases.",
152
+ "parameter": {
153
+ "type": "object",
154
+ "properties": {
155
+ "accession": {
156
+ "type": "string",
157
+ "description": "InterPro accession ID (e.g., IPR000719, IPR000719)"
158
+ }
159
+ },
160
+ "required": ["accession"]
161
+ },
162
+ "fields": {
163
+ "endpoint": "https://www.ebi.ac.uk/interpro/api/entry/interpro/{accession}",
164
+ "return_format": "JSON"
165
+ },
166
+ "return_schema": {
167
+ "type": "object",
168
+ "description": "Detailed InterPro entry information",
169
+ "properties": {
170
+ "metadata": {
171
+ "type": "object",
172
+ "properties": {
173
+ "accession": {"type": "string"},
174
+ "name": {"type": "string"},
175
+ "type": {"type": "string"},
176
+ "source_database": {"type": "string"},
177
+ "description": {"type": "string"}
178
+ }
179
+ },
180
+ "hierarchy": {
181
+ "type": "object",
182
+ "description": "Domain hierarchy information"
183
+ },
184
+ "member_databases": {
185
+ "type": "object",
186
+ "description": "Member database signatures"
187
+ }
188
+ }
189
+ },
190
+ "test_examples": [
191
+ {
192
+ "accession": "IPR000719"
193
+ },
194
+ {
195
+ "accession": "IPR000719"
196
+ }
197
+ ]
198
+ }
199
+ ]
@@ -0,0 +1,70 @@
1
+ [
2
+ {
3
+ "type": "JASPARRESTTool",
4
+ "name": "JASPAR_get_transcription_factors",
5
+ "description": "Get transcription factor binding site matrices from JASPAR",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "collection": {"type": "string", "default": "CORE", "description": "JASPAR collection"},
10
+ "limit": {"type": "integer", "default": 20, "description": "Number of results"}
11
+ }
12
+ },
13
+ "fields": {
14
+ "endpoint": "https://jaspar.elixir.no/api/v1/matrix/?collection={collection}&limit={limit}",
15
+ "return_format": "JSON"
16
+ },
17
+ "return_schema": {
18
+ "type": "object",
19
+ "properties": {
20
+ "results": {
21
+ "type": "array",
22
+ "items": {
23
+ "type": "object",
24
+ "properties": {
25
+ "matrix_id": {"type": "string"},
26
+ "name": {"type": "string"},
27
+ "collection": {"type": "string"},
28
+ "species": {"type": "array"},
29
+ "class": {"type": "string"},
30
+ "family": {"type": "string"},
31
+ "tax_group": {"type": "string"},
32
+ "type": {"type": "string"},
33
+ "version": {"type": "integer"},
34
+ "base_id": {"type": "string"},
35
+ "uniprot_ids": {"type": "array"},
36
+ "data_type": {"type": "string"},
37
+ "pubmed_id": {"type": "array"},
38
+ "jaspar_id": {"type": "string"},
39
+ "pfm": {
40
+ "type": "object",
41
+ "properties": {
42
+ "A": {"type": "array"},
43
+ "C": {"type": "array"},
44
+ "G": {"type": "array"},
45
+ "T": {"type": "array"}
46
+ }
47
+ },
48
+ "pwm": {
49
+ "type": "object",
50
+ "properties": {
51
+ "A": {"type": "array"},
52
+ "C": {"type": "array"},
53
+ "G": {"type": "array"},
54
+ "T": {"type": "array"}
55
+ }
56
+ }
57
+ }
58
+ }
59
+ },
60
+ "count": {"type": "integer"},
61
+ "next": {"type": "string"},
62
+ "previous": {"type": "string"}
63
+ }
64
+ },
65
+ "test_examples": [
66
+ {"collection": "CORE", "limit": 5},
67
+ {"collection": "CNE", "limit": 10}
68
+ ]
69
+ }
70
+ ]
@@ -0,0 +1,356 @@
1
+ [
2
+ {
3
+ "type": "KEGGSearchPathway",
4
+ "name": "kegg_search_pathway",
5
+ "description": "Search KEGG pathways by keyword. Returns pathway IDs and descriptions matching the search term.",
6
+ "parameter": {
7
+ "type": "object",
8
+ "properties": {
9
+ "keyword": {
10
+ "type": "string",
11
+ "description": "Search keyword for pathway names or descriptions (e.g., 'diabetes', 'metabolism')"
12
+ }
13
+ },
14
+ "required": ["keyword"]
15
+ },
16
+ "fields": {
17
+ "endpoint": "/find/pathway",
18
+ "return_format": "TEXT"
19
+ },
20
+ "return_schema": {
21
+ "type": "object",
22
+ "description": "KEGG pathway search results",
23
+ "properties": {
24
+ "status": {
25
+ "type": "string",
26
+ "description": "Status of the request"
27
+ },
28
+ "data": {
29
+ "type": "array",
30
+ "description": "Array of pathway results",
31
+ "items": {
32
+ "type": "object",
33
+ "properties": {
34
+ "pathway_id": {
35
+ "type": "string",
36
+ "description": "KEGG pathway identifier"
37
+ },
38
+ "description": {
39
+ "type": "string",
40
+ "description": "Pathway description"
41
+ }
42
+ }
43
+ }
44
+ },
45
+ "count": {
46
+ "type": "integer",
47
+ "description": "Number of pathways found"
48
+ },
49
+ "url": {
50
+ "type": "string",
51
+ "description": "API URL used"
52
+ }
53
+ }
54
+ },
55
+ "test_examples": [
56
+ {
57
+ "keyword": "diabetes"
58
+ },
59
+ {
60
+ "keyword": "metabolism"
61
+ }
62
+ ],
63
+ "label": [
64
+ "KEGG",
65
+ "Pathway",
66
+ "Search"
67
+ ],
68
+ "metadata": {
69
+ "tags": ["pathway", "metabolism", "search"],
70
+ "difficulty_level": "easy",
71
+ "estimated_execution_time": "< 2 seconds"
72
+ }
73
+ },
74
+ {
75
+ "type": "KEGGGetPathwayInfo",
76
+ "name": "kegg_get_pathway_info",
77
+ "description": "Get detailed pathway information from KEGG by pathway ID. Returns pathway data including genes, compounds, and reactions.",
78
+ "parameter": {
79
+ "type": "object",
80
+ "properties": {
81
+ "pathway_id": {
82
+ "type": "string",
83
+ "description": "KEGG pathway identifier (e.g., 'hsa00010', 'path:hsa00010')"
84
+ }
85
+ },
86
+ "required": ["pathway_id"]
87
+ },
88
+ "fields": {
89
+ "endpoint": "/get",
90
+ "return_format": "TEXT"
91
+ },
92
+ "return_schema": {
93
+ "type": "object",
94
+ "description": "KEGG pathway information",
95
+ "properties": {
96
+ "status": {
97
+ "type": "string",
98
+ "description": "Status of the request"
99
+ },
100
+ "data": {
101
+ "type": "object",
102
+ "description": "Pathway information",
103
+ "properties": {
104
+ "pathway_id": {
105
+ "type": "string",
106
+ "description": "KEGG pathway identifier"
107
+ },
108
+ "raw_data": {
109
+ "type": "string",
110
+ "description": "Raw pathway data from KEGG"
111
+ },
112
+ "lines": {
113
+ "type": "integer",
114
+ "description": "Number of data lines"
115
+ }
116
+ }
117
+ },
118
+ "url": {
119
+ "type": "string",
120
+ "description": "API URL used"
121
+ }
122
+ }
123
+ },
124
+ "test_examples": [
125
+ {
126
+ "pathway_id": "hsa00010"
127
+ },
128
+ {
129
+ "pathway_id": "hsa04910"
130
+ }
131
+ ],
132
+ "label": [
133
+ "KEGG",
134
+ "Pathway",
135
+ "Information"
136
+ ],
137
+ "metadata": {
138
+ "tags": ["pathway", "details", "genes"],
139
+ "difficulty_level": "easy",
140
+ "estimated_execution_time": "< 2 seconds"
141
+ }
142
+ },
143
+ {
144
+ "type": "KEGGFindGenes",
145
+ "name": "kegg_find_genes",
146
+ "description": "Find genes in KEGG database by keyword. Can search across all organisms or within a specific organism.",
147
+ "parameter": {
148
+ "type": "object",
149
+ "properties": {
150
+ "keyword": {
151
+ "type": "string",
152
+ "description": "Search keyword for gene names or descriptions"
153
+ },
154
+ "organism": {
155
+ "type": "string",
156
+ "description": "Organism code (e.g., 'hsa' for human, 'mmu' for mouse). Optional - searches all organisms if not specified",
157
+ "default": ""
158
+ }
159
+ },
160
+ "required": ["keyword"]
161
+ },
162
+ "fields": {
163
+ "endpoint": "/find/genes",
164
+ "return_format": "TEXT"
165
+ },
166
+ "return_schema": {
167
+ "type": "object",
168
+ "description": "KEGG gene search results",
169
+ "properties": {
170
+ "status": {
171
+ "type": "string",
172
+ "description": "Status of the request"
173
+ },
174
+ "data": {
175
+ "type": "array",
176
+ "description": "Array of gene results",
177
+ "items": {
178
+ "type": "object",
179
+ "properties": {
180
+ "gene_id": {
181
+ "type": "string",
182
+ "description": "KEGG gene identifier"
183
+ },
184
+ "description": {
185
+ "type": "string",
186
+ "description": "Gene description"
187
+ }
188
+ }
189
+ }
190
+ },
191
+ "count": {
192
+ "type": "integer",
193
+ "description": "Number of genes found"
194
+ },
195
+ "url": {
196
+ "type": "string",
197
+ "description": "API URL used"
198
+ }
199
+ }
200
+ },
201
+ "test_examples": [
202
+ {
203
+ "keyword": "insulin"
204
+ },
205
+ {
206
+ "keyword": "glucose",
207
+ "organism": "hsa"
208
+ }
209
+ ],
210
+ "label": [
211
+ "KEGG",
212
+ "Gene",
213
+ "Search"
214
+ ],
215
+ "metadata": {
216
+ "tags": ["gene", "search", "organism"],
217
+ "difficulty_level": "easy",
218
+ "estimated_execution_time": "< 2 seconds"
219
+ }
220
+ },
221
+ {
222
+ "type": "KEGGGetGeneInfo",
223
+ "name": "kegg_get_gene_info",
224
+ "description": "Get detailed gene information from KEGG by gene ID. Returns gene data including sequence, function, and pathway associations.",
225
+ "parameter": {
226
+ "type": "object",
227
+ "properties": {
228
+ "gene_id": {
229
+ "type": "string",
230
+ "description": "KEGG gene identifier (e.g., 'hsa:348', 'hsa:3480')"
231
+ }
232
+ },
233
+ "required": ["gene_id"]
234
+ },
235
+ "fields": {
236
+ "endpoint": "/get",
237
+ "return_format": "TEXT"
238
+ },
239
+ "return_schema": {
240
+ "type": "object",
241
+ "description": "KEGG gene information",
242
+ "properties": {
243
+ "status": {
244
+ "type": "string",
245
+ "description": "Status of the request"
246
+ },
247
+ "data": {
248
+ "type": "object",
249
+ "description": "Gene information",
250
+ "properties": {
251
+ "gene_id": {
252
+ "type": "string",
253
+ "description": "KEGG gene identifier"
254
+ },
255
+ "raw_data": {
256
+ "type": "string",
257
+ "description": "Raw gene data from KEGG"
258
+ },
259
+ "lines": {
260
+ "type": "integer",
261
+ "description": "Number of data lines"
262
+ }
263
+ }
264
+ },
265
+ "url": {
266
+ "type": "string",
267
+ "description": "API URL used"
268
+ }
269
+ }
270
+ },
271
+ "test_examples": [
272
+ {
273
+ "gene_id": "hsa:348"
274
+ },
275
+ {
276
+ "gene_id": "hsa:3480"
277
+ }
278
+ ],
279
+ "label": [
280
+ "KEGG",
281
+ "Gene",
282
+ "Information"
283
+ ],
284
+ "metadata": {
285
+ "tags": ["gene", "details", "sequence"],
286
+ "difficulty_level": "easy",
287
+ "estimated_execution_time": "< 2 seconds"
288
+ }
289
+ },
290
+ {
291
+ "type": "KEGGListOrganisms",
292
+ "name": "kegg_list_organisms",
293
+ "description": "List all available organisms in the KEGG database. Returns organism codes, names, and descriptions.",
294
+ "parameter": {
295
+ "type": "object",
296
+ "properties": {},
297
+ "required": []
298
+ },
299
+ "fields": {
300
+ "endpoint": "/list/organism",
301
+ "return_format": "TEXT"
302
+ },
303
+ "return_schema": {
304
+ "type": "object",
305
+ "description": "KEGG organism list",
306
+ "properties": {
307
+ "status": {
308
+ "type": "string",
309
+ "description": "Status of the request"
310
+ },
311
+ "data": {
312
+ "type": "array",
313
+ "description": "Array of organism information",
314
+ "items": {
315
+ "type": "object",
316
+ "properties": {
317
+ "organism_code": {
318
+ "type": "string",
319
+ "description": "KEGG organism code (e.g., 'hsa', 'mmu')"
320
+ },
321
+ "organism_name": {
322
+ "type": "string",
323
+ "description": "Organism scientific name"
324
+ },
325
+ "description": {
326
+ "type": "string",
327
+ "description": "Organism description"
328
+ }
329
+ }
330
+ }
331
+ },
332
+ "count": {
333
+ "type": "integer",
334
+ "description": "Number of organisms"
335
+ },
336
+ "url": {
337
+ "type": "string",
338
+ "description": "API URL used"
339
+ }
340
+ }
341
+ },
342
+ "test_examples": [
343
+ {}
344
+ ],
345
+ "label": [
346
+ "KEGG",
347
+ "Organism",
348
+ "List"
349
+ ],
350
+ "metadata": {
351
+ "tags": ["organism", "list", "taxonomy"],
352
+ "difficulty_level": "easy",
353
+ "estimated_execution_time": "< 2 seconds"
354
+ }
355
+ }
356
+ ]