tooluniverse 0.2.0__py3-none-any.whl → 1.0.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 (186) hide show
  1. tooluniverse/__init__.py +340 -4
  2. tooluniverse/admetai_tool.py +84 -0
  3. tooluniverse/agentic_tool.py +563 -0
  4. tooluniverse/alphafold_tool.py +96 -0
  5. tooluniverse/base_tool.py +129 -6
  6. tooluniverse/boltz_tool.py +207 -0
  7. tooluniverse/chem_tool.py +192 -0
  8. tooluniverse/compose_scripts/__init__.py +1 -0
  9. tooluniverse/compose_scripts/biomarker_discovery.py +293 -0
  10. tooluniverse/compose_scripts/comprehensive_drug_discovery.py +186 -0
  11. tooluniverse/compose_scripts/drug_safety_analyzer.py +89 -0
  12. tooluniverse/compose_scripts/literature_tool.py +34 -0
  13. tooluniverse/compose_scripts/output_summarizer.py +279 -0
  14. tooluniverse/compose_scripts/tool_description_optimizer.py +681 -0
  15. tooluniverse/compose_scripts/tool_discover.py +705 -0
  16. tooluniverse/compose_scripts/tool_graph_composer.py +448 -0
  17. tooluniverse/compose_tool.py +371 -0
  18. tooluniverse/ctg_tool.py +1002 -0
  19. tooluniverse/custom_tool.py +81 -0
  20. tooluniverse/dailymed_tool.py +108 -0
  21. tooluniverse/data/admetai_tools.json +155 -0
  22. tooluniverse/data/adverse_event_tools.json +108 -0
  23. tooluniverse/data/agentic_tools.json +1156 -0
  24. tooluniverse/data/alphafold_tools.json +87 -0
  25. tooluniverse/data/boltz_tools.json +9 -0
  26. tooluniverse/data/chembl_tools.json +16 -0
  27. tooluniverse/data/clinicaltrials_gov_tools.json +326 -0
  28. tooluniverse/data/compose_tools.json +202 -0
  29. tooluniverse/data/dailymed_tools.json +70 -0
  30. tooluniverse/data/dataset_tools.json +646 -0
  31. tooluniverse/data/disease_target_score_tools.json +712 -0
  32. tooluniverse/data/efo_tools.json +17 -0
  33. tooluniverse/data/embedding_tools.json +319 -0
  34. tooluniverse/data/enrichr_tools.json +31 -0
  35. tooluniverse/data/europe_pmc_tools.json +22 -0
  36. tooluniverse/data/expert_feedback_tools.json +10 -0
  37. tooluniverse/data/fda_drug_adverse_event_tools.json +491 -0
  38. tooluniverse/data/fda_drug_labeling_tools.json +1 -1
  39. tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py +76929 -148860
  40. tooluniverse/data/finder_tools.json +209 -0
  41. tooluniverse/data/gene_ontology_tools.json +113 -0
  42. tooluniverse/data/gwas_tools.json +1082 -0
  43. tooluniverse/data/hpa_tools.json +333 -0
  44. tooluniverse/data/humanbase_tools.json +47 -0
  45. tooluniverse/data/idmap_tools.json +74 -0
  46. tooluniverse/data/mcp_client_tools_example.json +113 -0
  47. tooluniverse/data/mcpautoloadertool_defaults.json +28 -0
  48. tooluniverse/data/medlineplus_tools.json +141 -0
  49. tooluniverse/data/monarch_tools.json +1 -1
  50. tooluniverse/data/openalex_tools.json +36 -0
  51. tooluniverse/data/opentarget_tools.json +1 -1
  52. tooluniverse/data/output_summarization_tools.json +101 -0
  53. tooluniverse/data/packages/bioinformatics_core_tools.json +1756 -0
  54. tooluniverse/data/packages/categorized_tools.txt +206 -0
  55. tooluniverse/data/packages/cheminformatics_tools.json +347 -0
  56. tooluniverse/data/packages/earth_sciences_tools.json +74 -0
  57. tooluniverse/data/packages/genomics_tools.json +776 -0
  58. tooluniverse/data/packages/image_processing_tools.json +38 -0
  59. tooluniverse/data/packages/machine_learning_tools.json +789 -0
  60. tooluniverse/data/packages/neuroscience_tools.json +62 -0
  61. tooluniverse/data/packages/original_tools.txt +0 -0
  62. tooluniverse/data/packages/physics_astronomy_tools.json +62 -0
  63. tooluniverse/data/packages/scientific_computing_tools.json +560 -0
  64. tooluniverse/data/packages/single_cell_tools.json +453 -0
  65. tooluniverse/data/packages/structural_biology_tools.json +396 -0
  66. tooluniverse/data/packages/visualization_tools.json +399 -0
  67. tooluniverse/data/pubchem_tools.json +215 -0
  68. tooluniverse/data/pubtator_tools.json +68 -0
  69. tooluniverse/data/rcsb_pdb_tools.json +1332 -0
  70. tooluniverse/data/reactome_tools.json +19 -0
  71. tooluniverse/data/semantic_scholar_tools.json +26 -0
  72. tooluniverse/data/special_tools.json +2 -25
  73. tooluniverse/data/tool_composition_tools.json +88 -0
  74. tooluniverse/data/toolfinderkeyword_defaults.json +34 -0
  75. tooluniverse/data/txagent_client_tools.json +9 -0
  76. tooluniverse/data/uniprot_tools.json +211 -0
  77. tooluniverse/data/url_fetch_tools.json +94 -0
  78. tooluniverse/data/uspto_downloader_tools.json +9 -0
  79. tooluniverse/data/uspto_tools.json +811 -0
  80. tooluniverse/data/xml_tools.json +3275 -0
  81. tooluniverse/dataset_tool.py +296 -0
  82. tooluniverse/default_config.py +165 -0
  83. tooluniverse/efo_tool.py +42 -0
  84. tooluniverse/embedding_database.py +630 -0
  85. tooluniverse/embedding_sync.py +396 -0
  86. tooluniverse/enrichr_tool.py +266 -0
  87. tooluniverse/europe_pmc_tool.py +52 -0
  88. tooluniverse/execute_function.py +1775 -95
  89. tooluniverse/extended_hooks.py +444 -0
  90. tooluniverse/gene_ontology_tool.py +194 -0
  91. tooluniverse/graphql_tool.py +158 -36
  92. tooluniverse/gwas_tool.py +358 -0
  93. tooluniverse/hpa_tool.py +1645 -0
  94. tooluniverse/humanbase_tool.py +389 -0
  95. tooluniverse/logging_config.py +254 -0
  96. tooluniverse/mcp_client_tool.py +764 -0
  97. tooluniverse/mcp_integration.py +413 -0
  98. tooluniverse/mcp_tool_registry.py +925 -0
  99. tooluniverse/medlineplus_tool.py +337 -0
  100. tooluniverse/openalex_tool.py +228 -0
  101. tooluniverse/openfda_adv_tool.py +283 -0
  102. tooluniverse/openfda_tool.py +393 -160
  103. tooluniverse/output_hook.py +1122 -0
  104. tooluniverse/package_tool.py +195 -0
  105. tooluniverse/pubchem_tool.py +158 -0
  106. tooluniverse/pubtator_tool.py +168 -0
  107. tooluniverse/rcsb_pdb_tool.py +38 -0
  108. tooluniverse/reactome_tool.py +108 -0
  109. tooluniverse/remote/boltz/boltz_mcp_server.py +50 -0
  110. tooluniverse/remote/depmap_24q2/depmap_24q2_mcp_tool.py +442 -0
  111. tooluniverse/remote/expert_feedback/human_expert_mcp_tools.py +2013 -0
  112. tooluniverse/remote/expert_feedback/simple_test.py +23 -0
  113. tooluniverse/remote/expert_feedback/start_web_interface.py +188 -0
  114. tooluniverse/remote/expert_feedback/web_only_interface.py +0 -0
  115. tooluniverse/remote/immune_compass/compass_tool.py +327 -0
  116. tooluniverse/remote/pinnacle/pinnacle_tool.py +328 -0
  117. tooluniverse/remote/transcriptformer/transcriptformer_tool.py +586 -0
  118. tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +61 -0
  119. tooluniverse/remote/uspto_downloader/uspto_downloader_tool.py +120 -0
  120. tooluniverse/remote_tool.py +99 -0
  121. tooluniverse/restful_tool.py +53 -30
  122. tooluniverse/scripts/generate_tool_graph.py +408 -0
  123. tooluniverse/scripts/visualize_tool_graph.py +829 -0
  124. tooluniverse/semantic_scholar_tool.py +62 -0
  125. tooluniverse/smcp.py +2452 -0
  126. tooluniverse/smcp_server.py +975 -0
  127. tooluniverse/test/mcp_server_test.py +0 -0
  128. tooluniverse/test/test_admetai_tool.py +370 -0
  129. tooluniverse/test/test_agentic_tool.py +129 -0
  130. tooluniverse/test/test_alphafold_tool.py +71 -0
  131. tooluniverse/test/test_chem_tool.py +37 -0
  132. tooluniverse/test/test_compose_lieraturereview.py +63 -0
  133. tooluniverse/test/test_compose_tool.py +448 -0
  134. tooluniverse/test/test_dailymed.py +69 -0
  135. tooluniverse/test/test_dataset_tool.py +200 -0
  136. tooluniverse/test/test_disease_target_score.py +56 -0
  137. tooluniverse/test/test_drugbank_filter_examples.py +179 -0
  138. tooluniverse/test/test_efo.py +31 -0
  139. tooluniverse/test/test_enrichr_tool.py +21 -0
  140. tooluniverse/test/test_europe_pmc_tool.py +20 -0
  141. tooluniverse/test/test_fda_adv.py +95 -0
  142. tooluniverse/test/test_fda_drug_labeling.py +91 -0
  143. tooluniverse/test/test_gene_ontology_tools.py +66 -0
  144. tooluniverse/test/test_gwas_tool.py +139 -0
  145. tooluniverse/test/test_hpa.py +625 -0
  146. tooluniverse/test/test_humanbase_tool.py +20 -0
  147. tooluniverse/test/test_idmap_tools.py +61 -0
  148. tooluniverse/test/test_mcp_server.py +211 -0
  149. tooluniverse/test/test_mcp_tool.py +247 -0
  150. tooluniverse/test/test_medlineplus.py +220 -0
  151. tooluniverse/test/test_openalex_tool.py +32 -0
  152. tooluniverse/test/test_opentargets.py +28 -0
  153. tooluniverse/test/test_pubchem_tool.py +116 -0
  154. tooluniverse/test/test_pubtator_tool.py +37 -0
  155. tooluniverse/test/test_rcsb_pdb_tool.py +86 -0
  156. tooluniverse/test/test_reactome.py +54 -0
  157. tooluniverse/test/test_semantic_scholar_tool.py +24 -0
  158. tooluniverse/test/test_software_tools.py +147 -0
  159. tooluniverse/test/test_tool_description_optimizer.py +49 -0
  160. tooluniverse/test/test_tool_finder.py +26 -0
  161. tooluniverse/test/test_tool_finder_llm.py +252 -0
  162. tooluniverse/test/test_tools_find.py +195 -0
  163. tooluniverse/test/test_uniprot_tools.py +74 -0
  164. tooluniverse/test/test_uspto_tool.py +72 -0
  165. tooluniverse/test/test_xml_tool.py +113 -0
  166. tooluniverse/tool_finder_embedding.py +267 -0
  167. tooluniverse/tool_finder_keyword.py +693 -0
  168. tooluniverse/tool_finder_llm.py +699 -0
  169. tooluniverse/tool_graph_web_ui.py +955 -0
  170. tooluniverse/tool_registry.py +416 -0
  171. tooluniverse/uniprot_tool.py +155 -0
  172. tooluniverse/url_tool.py +253 -0
  173. tooluniverse/uspto_tool.py +240 -0
  174. tooluniverse/utils.py +369 -41
  175. tooluniverse/xml_tool.py +369 -0
  176. tooluniverse-1.0.1.dist-info/METADATA +387 -0
  177. tooluniverse-1.0.1.dist-info/RECORD +182 -0
  178. tooluniverse-1.0.1.dist-info/entry_points.txt +9 -0
  179. tooluniverse/generate_mcp_tools.py +0 -113
  180. tooluniverse/mcp_server.py +0 -3340
  181. tooluniverse-0.2.0.dist-info/METADATA +0 -139
  182. tooluniverse-0.2.0.dist-info/RECORD +0 -21
  183. tooluniverse-0.2.0.dist-info/entry_points.txt +0 -4
  184. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/WHEEL +0 -0
  185. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/licenses/LICENSE +0 -0
  186. {tooluniverse-0.2.0.dist-info → tooluniverse-1.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,811 @@
1
+ [
2
+ {
3
+ "type": "USPTOOpenDataPortalTool",
4
+ "name": "get_patent_overview_by_text_query",
5
+ "description": "Search for patent application overviews using a query string of the format 'applicationMetaData.inventionTitle:your_search_term', where your_search_term is the case-insensitive keyword or keyphrase you are searching for. If your_search_term is a multi-word phrase, it must be encased in escaped double quotation marks for exact matching. This tool allows for sorting, offsetting, and filterin of results. Returns a list of important metadata fields for each application, including application number, filing date, grant date, invention title, and CPC classifications.",
6
+ "api_endpoint": "patent/applications/search",
7
+ "field_name_mappings": {
8
+ "": ""
9
+ },
10
+ "parameter": {
11
+ "type": "object",
12
+ "properties": {
13
+ "query": {
14
+ "type": "string",
15
+ "description": "Keyword or keyphrase to search for in the patent application title. This field is required.",
16
+ "required": true
17
+ },
18
+ "exact_match": {
19
+ "type": "boolean",
20
+ "description": "If true, the search will only return results that exactly match the provided query. Default is false.",
21
+ "required": false,
22
+ "default": false
23
+ },
24
+ "sort": {
25
+ "type": "string",
26
+ "description": "Sorts results by one of the following fields: filingDate or grantDate. Follow the field name with a space and 'asc' or 'desc' for ascending or descending by date, respectively. For example: 'filingDate desc'",
27
+ "required": false,
28
+ "default": "filingDate desc"
29
+ },
30
+ "offset": {
31
+ "type": "integer",
32
+ "description": "The starting position (zero-indexed) of the result set. Default is 0.",
33
+ "required": false,
34
+ "default": 0
35
+ },
36
+ "limit": {
37
+ "type": "integer",
38
+ "description": "The maximum number of results to return. Default is 25.",
39
+ "required": false,
40
+ "default": 25
41
+ },
42
+ "rangeFilters": {
43
+ "type": "string",
44
+ "description": "Limits results to the date range specified for one of the following fields: filingDate or grantDate. Provide the field name, a space, and a colon-separated start and end value in YYYY-MM-DD format. For example: 'grantDate 2010-01-01:2011-01-01'",
45
+ "required": false
46
+ }
47
+ }
48
+ },
49
+ "default_query_params": {
50
+ "fields": "applicationNumberText,grantDocumentMetaData,applicationMetaData.cpcClassificationBag,applicationMetaData.filingDate,applicationMetaData.grantDate,applicationMetaData.inventionTitle,applicationMetaData.applicationStatusDescriptionText,parentContinuityBag,childContinuityBag,applicationMetaData.earliestPublicationDate"
51
+ },
52
+ "required": [
53
+ "query"
54
+ ],
55
+ "required_api_keys": ["USPTO_API_KEY"],
56
+ "return_schema": {
57
+ "type": "object",
58
+ "properties": {
59
+ "error": {
60
+ "type": "string",
61
+ "description": "(if present) Error message if the request fails"
62
+ },
63
+ "details": {
64
+ "type": "object",
65
+ "description": "(if present) Additional details about the error if the request fails"
66
+ },
67
+ "count": {
68
+ "type": "integer",
69
+ "description": "Total number of matching patent applications"
70
+ },
71
+ "patentFileWrapperDataBag": {
72
+ "type": "array",
73
+ "items": {
74
+ "type": "object",
75
+ "properties": {
76
+ "applicationNumberText": {
77
+ "type": "string",
78
+ "description": "The application number of the patent"
79
+ },
80
+ "applicationMetaData": {
81
+ "type": "object",
82
+ "properties": {
83
+ "filingDate": {
84
+ "type": "string",
85
+ "description": "The filing date of the application (YYYY-MM-DD format)"
86
+ },
87
+ "grantDate": {
88
+ "type": "string",
89
+ "description": "The grant date of the patent (YYYY-MM-DD format)"
90
+ },
91
+ "inventionTitle": {
92
+ "type": "string",
93
+ "description": "The title of the invention"
94
+ },
95
+ "applicationStatusDescriptionText": {
96
+ "type": "string",
97
+ "description": "Current status description of the application"
98
+ },
99
+ "earliestPublicationDate": {
100
+ "type": "string",
101
+ "description": "The earliest publication date (YYYY-MM-DD format)"
102
+ },
103
+ "cpcClassificationBag": {
104
+ "type": "array",
105
+ "description": "CPC classification codes for the patent"
106
+ }
107
+ }
108
+ },
109
+ "grantDocumentMetaData": {
110
+ "type": "object",
111
+ "description": "Contains patent grant zip and xml file meta data for an application",
112
+ "properties": {
113
+ "zipFileName": {
114
+ "type": "string",
115
+ "description": "Name of the zip file containing the grant data"
116
+ },
117
+ "productIdentifier": {
118
+ "type": "string",
119
+ "description": "Product identifier for the grant data"
120
+ },
121
+ "fileLocationURI": {
122
+ "type": "string",
123
+ "description": "URI location of the grant file"
124
+ },
125
+ "fileCreateDateTime": {
126
+ "type": "string",
127
+ "description": "Date and time when the file was created"
128
+ },
129
+ "xmlFileName": {
130
+ "type": "string",
131
+ "description": "Name of the XML file containing the grant data"
132
+ }
133
+ }
134
+ },
135
+ "parentContinuityBag": {
136
+ "type": "array",
137
+ "items": {
138
+ "type": "object",
139
+ "properties": {
140
+ "firstInventorToFileIndicator": {
141
+ "type": "boolean",
142
+ "description": "(if present) Indicates whether this application was the first inventor to file"
143
+ },
144
+ "parentPatentNumber": {
145
+ "type": "string",
146
+ "description": "(if present) Patent number of the parent application"
147
+ },
148
+ "parentApplicationStatusCode": {
149
+ "type": "integer",
150
+ "description": "Status code of the parent application"
151
+ },
152
+ "claimParentageTypeCode": {
153
+ "type": "string",
154
+ "description": "Code indicating the type of parent relationship"
155
+ },
156
+ "claimParentageTypeCodeDescriptionText": {
157
+ "type": "string",
158
+ "description": "Description of the parent relationship type"
159
+ },
160
+ "parentApplicationStatusDescriptionText": {
161
+ "type": "string",
162
+ "description": "Status description of the parent application"
163
+ },
164
+ "parentApplicationNumberText": {
165
+ "type": "string",
166
+ "description": "Application number of the parent application"
167
+ },
168
+ "parentApplicationFilingDate": {
169
+ "type": "string",
170
+ "description": "Filing date of the parent application (YYYY-MM-DD format)"
171
+ },
172
+ "childApplicationNumberText": {
173
+ "type": "string",
174
+ "description": "Application number of the child application of this parent application, which is the current application"
175
+ }
176
+ }
177
+ }
178
+ },
179
+ "childContinuityBag": {
180
+ "type": "array",
181
+ "items": {
182
+ "type": "object",
183
+ "properties": {
184
+ "childApplicationStatusCode": {
185
+ "type": "number",
186
+ "description": "Status code of the child application"
187
+ },
188
+ "parentApplicationNumberText": {
189
+ "type": "string",
190
+ "description": "Application number of the parent application"
191
+ },
192
+ "childApplicationNumberText": {
193
+ "type": "string",
194
+ "description": "Application number of the child application"
195
+ },
196
+ "childApplicationStatusDescriptionText": {
197
+ "type": "string",
198
+ "description": "Status description of the child application"
199
+ },
200
+ "childApplicationFilingDate": {
201
+ "type": "string",
202
+ "description": "Filing date of the child application (YYYY-MM-DD format)"
203
+ },
204
+ "firstInventorToFileIndicator": {
205
+ "type": "boolean",
206
+ "description": "Indicates if this application was the first inventor to file"
207
+ },
208
+ "childPatentNumber": {
209
+ "type": "string",
210
+ "description": "Patent number of the child application"
211
+ },
212
+ "claimParentageTypeCode": {
213
+ "type": "string",
214
+ "description": "Code indicating the type of parent relationship"
215
+ },
216
+ "claimParentageTypeCodeDescriptionText": {
217
+ "type": "string",
218
+ "description": "Description of the parent relationship type"
219
+ }
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+ },
226
+ "requestIdentifier": {
227
+ "type": "string",
228
+ "description": "Unique identifier for the API request"
229
+ }
230
+ }
231
+ }
232
+ },
233
+ {
234
+ "type": "USPTOOpenDataPortalTool",
235
+ "name": "get_patent_application_metadata",
236
+ "description": "Retrieves only the metadata for a specific patent application by its application number.",
237
+ "api_endpoint": "patent/applications/{applicationNumberText}/meta-data",
238
+ "parameter": {
239
+ "type": "object",
240
+ "properties": {
241
+ "applicationNumberText": {
242
+ "type": "string",
243
+ "description": "The application number of the patent.",
244
+ "required": true
245
+ }
246
+ }
247
+ },
248
+ "return_fields": [
249
+ "applicationNumberText",
250
+ "applicationMetaData.firstInventorToFileIndicator",
251
+ "applicationMetaData.applicationStatusCode",
252
+ "applicationMetaData.applicationTypeCode",
253
+ "applicationMetaData.filingDate",
254
+ "applicationMetaData.effectiveFilingDate",
255
+ "applicationMetaData.grantDate",
256
+ "applicationMetaData.uspcSymbolText",
257
+ "applicationMetaData.cpcClassificationBag",
258
+ "applicationMetaData.applicationTypeLabelName",
259
+ "applicationMetaData.applicationTypeCategory",
260
+ "applicationMetaData.applicationStatusDate",
261
+ "applicationMetaData.applicationStatusDescriptionText",
262
+ "applicationMetaData.class",
263
+ "applicationMetaData.subclass",
264
+ "applicationMetaData.inventionTitle",
265
+ "applicationMetaData.patentNumber",
266
+ "applicationMetaData.pctPublicationNumber",
267
+ "applicationMetaData.pctPublicationDate",
268
+ "applicationMetaData.internationalRegistrationPublicationDate",
269
+ "applicationMetaData.internationalRegistrationNumber",
270
+ "applicationMetaData.applicantBag/applicantNameText",
271
+ "applicationMetaData.inventorBag/inventorNameText"
272
+ ],
273
+ "required": [
274
+ "applicationNumberText"
275
+ ],
276
+ "required_api_keys": ["USPTO_API_KEY"],
277
+ "return_schema": {
278
+ "type": "object",
279
+ "properties": {
280
+ "error": {
281
+ "type": "string",
282
+ "description": "(if present) Error message if the request fails"
283
+ },
284
+ "details": {
285
+ "type": "object",
286
+ "description": "(if present) Additional details about the error if the request fails"
287
+ },
288
+ "count": {
289
+ "type": "integer",
290
+ "description": "Total number of matching patent applications"
291
+ },
292
+ "patentFileWrapperDataBag": {
293
+ "type": "array",
294
+ "items": {
295
+ "type": "object",
296
+ "properties": {
297
+ "missing_fields": {
298
+ "type": "array",
299
+ "items": {
300
+ "type": "string",
301
+ "description": "Field that was not present in the response"
302
+ },
303
+ "description": "List of fields that were not present in the response"
304
+ },
305
+ "applicationNumberText": {
306
+ "type": "string",
307
+ "description": "The application number of the patent"
308
+ },
309
+ "applicationMetaData": {
310
+ "type": "object",
311
+ "properties": {
312
+ "firstInventorToFileIndicator": {
313
+ "type": "string",
314
+ "description": "Indicates whether this is the first inventor to file (Y/N)"
315
+ },
316
+ "applicationStatusCode": {
317
+ "type": "integer",
318
+ "description": "Numeric code for the application status"
319
+ },
320
+ "applicationTypeCode": {
321
+ "type": "string",
322
+ "description": "Code for the type of application (e.g., UTL for Utility)"
323
+ },
324
+ "filingDate": {
325
+ "type": "string",
326
+ "description": "The filing date of the application (YYYY-MM-DD format)"
327
+ },
328
+ "effectiveFilingDate": {
329
+ "type": "string",
330
+ "description": "The effective filing date (YYYY-MM-DD format)"
331
+ },
332
+ "grantDate": {
333
+ "type": "string",
334
+ "description": "The grant date of the patent (YYYY-MM-DD format)"
335
+ },
336
+ "uspcSymbolText": {
337
+ "type": "string",
338
+ "description": "USPC classification symbol"
339
+ },
340
+ "cpcClassificationBag": {
341
+ "type": "array",
342
+ "items": {
343
+ "type": "string"
344
+ },
345
+ "description": "CPC classification codes for the patent"
346
+ },
347
+ "applicationTypeLabelName": {
348
+ "type": "string",
349
+ "description": "Label name for the application type"
350
+ },
351
+ "applicationTypeCategory": {
352
+ "type": "string",
353
+ "description": "Category of the application type"
354
+ },
355
+ "applicationStatusDate": {
356
+ "type": "string",
357
+ "description": "Date of the application status (YYYY-MM-DD format)"
358
+ },
359
+ "applicationStatusDescriptionText": {
360
+ "type": "string",
361
+ "description": "Current status description of the application"
362
+ },
363
+ "class": {
364
+ "type": "string",
365
+ "description": "USPC class"
366
+ },
367
+ "subclass": {
368
+ "type": "string",
369
+ "description": "USPC subclass"
370
+ },
371
+ "inventionTitle": {
372
+ "type": "string",
373
+ "description": "The title of the invention"
374
+ },
375
+ "patentNumber": {
376
+ "type": "string",
377
+ "description": "Patent number if granted"
378
+ },
379
+ "pctPublicationNumber": {
380
+ "type": "string",
381
+ "description": "PCT publication number"
382
+ },
383
+ "pctPublicationDate": {
384
+ "type": "string",
385
+ "description": "PCT publication date (YYYY-MM-DD format)"
386
+ },
387
+ "internationalRegistrationPublicationDate": {
388
+ "type": "string",
389
+ "description": "International registration publication date (YYYY-MM-DD format)"
390
+ },
391
+ "internationalRegistrationNumber": {
392
+ "type": "string",
393
+ "description": "International registration number"
394
+ },
395
+ "applicantBag": {
396
+ "type": "array",
397
+ "items": {
398
+ "type": "object",
399
+ "properties": {
400
+ "applicantNameText": {
401
+ "type": "string",
402
+ "description": "Name of the applicant"
403
+ }
404
+ }
405
+ }
406
+ },
407
+ "inventorBag": {
408
+ "type": "array",
409
+ "items": {
410
+ "type": "object",
411
+ "properties": {
412
+ "inventorNameText": {
413
+ "type": "string",
414
+ "description": "Full name of the inventor"
415
+ }
416
+ }
417
+ }
418
+ }
419
+ }
420
+ }
421
+ }
422
+ }
423
+ },
424
+ "requestIdentifier": {
425
+ "type": "string",
426
+ "description": "Unique identifier for the API request"
427
+ }
428
+ }
429
+ }
430
+ },
431
+ {
432
+ "type": "USPTOOpenDataPortalTool",
433
+ "name": "get_patent_term_adjustment_data",
434
+ "description": "Obtains the patent term adjustment details for a given application number.",
435
+ "api_endpoint": "patent/applications/{applicationNumberText}/adjustment",
436
+ "parameter": {
437
+ "type": "object",
438
+ "properties": {
439
+ "applicationNumberText": {
440
+ "type": "string",
441
+ "description": "The application number of the patent.",
442
+ "required": true
443
+ }
444
+ }
445
+ },
446
+ "required": [
447
+ "applicationNumberText"
448
+ ],
449
+ "return_fields": [
450
+ "applicationNumberText",
451
+ "patentTermAdjustmentData.adjustmentTotalQuantity"
452
+ ],
453
+ "required_api_keys": ["USPTO_API_KEY"],
454
+ "return_schema": {
455
+ "type": "object",
456
+ "properties": {
457
+ "error": {
458
+ "type": "string",
459
+ "description": "(if present) Error message if the request fails"
460
+ },
461
+ "details": {
462
+ "type": "object",
463
+ "description": "(if present) Additional details about the error if the request fails"
464
+ },
465
+ "count": {
466
+ "type": "integer",
467
+ "description": "Total number of matching patent applications"
468
+ },
469
+ "patentFileWrapperDataBag": {
470
+ "type": "array",
471
+ "items": {
472
+ "type": "object",
473
+ "properties": {
474
+ "applicationNumberText": {
475
+ "type": "string",
476
+ "description": "The application number of the patent"
477
+ },
478
+ "patentTermAdjustmentData": {
479
+ "type": "object",
480
+ "description": "Patent term adjustment data",
481
+ "properties": {
482
+ "adjustmentTotalQuantity": {
483
+ "type": "integer",
484
+ "description": "Patent term adjustment total quantity number that is a summation of NONOVERLAPPING USPTO DELAYS (+/- PTO MANUAL ADJUSTMENTS) - APPLICANT DELAYS"
485
+ }
486
+ }
487
+ },
488
+ "missing_fields": {
489
+ "type": "array",
490
+ "items": {
491
+ "type": "string",
492
+ "description": "Field that was not present in the response"
493
+ },
494
+ "description": "List of fields that were not present in the response"
495
+ }
496
+ }
497
+ }
498
+ },
499
+ "requestIdentifier": {
500
+ "type": "string",
501
+ "description": "Unique identifier for the API request"
502
+ }
503
+ }
504
+ }
505
+ },
506
+ {
507
+ "type": "USPTOOpenDataPortalTool",
508
+ "name": "get_patent_continuity_data",
509
+ "description": "Fetches the parent and child continuity data for a patent application, showing its relationship to other applications.",
510
+ "api_endpoint": "patent/applications/{applicationNumberText}/continuity",
511
+ "parameter": {
512
+ "type": "object",
513
+ "properties": {
514
+ "applicationNumberText": {
515
+ "type": "string",
516
+ "description": "The application number of the patent.",
517
+ "required": true
518
+ }
519
+ }
520
+ },
521
+ "required": [
522
+ "applicationNumberText"
523
+ ],
524
+ "required_api_keys": ["USPTO_API_KEY"],
525
+ "return_schema": {
526
+ "type": "object",
527
+ "properties": {
528
+ "error": {
529
+ "type": "string",
530
+ "description": "(if present) Error message if the request fails"
531
+ },
532
+ "details": {
533
+ "type": "object",
534
+ "description": "(if present) Additional details about the error if the request fails"
535
+ },
536
+ "count": {
537
+ "type": "integer",
538
+ "description": "Total number of matching patent applications"
539
+ },
540
+ "patentFileWrapperDataBag": {
541
+ "type": "array",
542
+ "items": {
543
+ "type": "object",
544
+ "properties": {
545
+ "applicationNumberText": {
546
+ "type": "string",
547
+ "description": "The application number of the patent"
548
+ },
549
+ "parentContinuityBag": {
550
+ "type": "array",
551
+ "items": {
552
+ "type": "object",
553
+ "properties": {
554
+ "firstInventorToFileIndicator": {
555
+ "type": "boolean",
556
+ "description": "Indicates whether this is the first inventor to file"
557
+ },
558
+ "parentApplicationStatusCode": {
559
+ "type": "integer",
560
+ "description": "Status code of the parent application"
561
+ },
562
+ "parentPatentNumber": {
563
+ "type": "string",
564
+ "description": "Patent number of the parent application"
565
+ },
566
+ "parentApplicationStatusDescriptionText": {
567
+ "type": "string",
568
+ "description": "Status description of the parent application"
569
+ },
570
+ "parentApplicationFilingDate": {
571
+ "type": "string",
572
+ "description": "Filing date of the parent application (YYYY-MM-DD format)"
573
+ },
574
+ "parentApplicationNumberText": {
575
+ "type": "string",
576
+ "description": "Application number of the parent application"
577
+ },
578
+ "childApplicationNumberText": {
579
+ "type": "string",
580
+ "description": "Application number of the child application"
581
+ },
582
+ "claimParentageTypeCode": {
583
+ "type": "string",
584
+ "description": "Code indicating the type of parent relationship"
585
+ },
586
+ "claimParentageTypeCodeDescriptionText": {
587
+ "type": "string",
588
+ "description": "Description of the parent relationship type"
589
+ }
590
+ }
591
+ }
592
+ },
593
+ "childContinuityBag": {
594
+ "type": "array",
595
+ "items": {
596
+ "type": "object",
597
+ "properties": {
598
+ "childApplicationStatusCode": {
599
+ "type": "number",
600
+ "description": "Status code of the child application"
601
+ },
602
+ "parentApplicationNumberText": {
603
+ "type": "string",
604
+ "description": "Application number of the parent application"
605
+ },
606
+ "childApplicationNumberText": {
607
+ "type": "string",
608
+ "description": "Application number of the child application"
609
+ },
610
+ "childApplicationStatusDescriptionText": {
611
+ "type": "string",
612
+ "description": "Status description of the child application"
613
+ },
614
+ "childApplicationFilingDate": {
615
+ "type": "string",
616
+ "description": "Filing date of the child application (YYYY-MM-DD format)"
617
+ },
618
+ "firstInventorToFileIndicator": {
619
+ "type": "boolean",
620
+ "description": "Indicates whether this is the first inventor to file"
621
+ },
622
+ "childPatentNumber": {
623
+ "type": "string",
624
+ "description": "Patent number of the child application"
625
+ },
626
+ "claimParentageTypeCode": {
627
+ "type": "string",
628
+ "description": "Code indicating the type of parent relationship"
629
+ },
630
+ "claimParentageTypeCodeDescriptionText": {
631
+ "type": "string",
632
+ "description": "Description of the parent relationship type"
633
+ }
634
+ }
635
+ }
636
+ }
637
+ }
638
+ }
639
+ },
640
+ "requestIdentifier": {
641
+ "type": "string",
642
+ "description": "Unique identifier for the API request"
643
+ }
644
+ }
645
+ }
646
+ },
647
+ {
648
+ "type": "USPTOOpenDataPortalTool",
649
+ "name": "get_patent_foreign_priority_data",
650
+ "description": "Accesses information about any foreign priority claims associated with an application.",
651
+ "api_endpoint": "patent/applications/{applicationNumberText}/foreign-priority",
652
+ "parameter": {
653
+ "type": "object",
654
+ "properties": {
655
+ "applicationNumberText": {
656
+ "type": "string",
657
+ "description": "The application number of the patent.",
658
+ "required": true
659
+ }
660
+ }
661
+ },
662
+ "required": [
663
+ "applicationNumberText"
664
+ ],
665
+ "required_api_keys": ["USPTO_API_KEY"],
666
+ "return_schema": {
667
+ "type": "object",
668
+ "properties": {
669
+ "error": {
670
+ "type": "string",
671
+ "description": "(if present) Error message if the request fails"
672
+ },
673
+ "details": {
674
+ "type": "object",
675
+ "description": "(if present) Additional details about the error if the request fails"
676
+ },
677
+ "count": {
678
+ "type": "integer",
679
+ "description": "Total number of matching patent applications"
680
+ },
681
+ "patentFileWrapperDataBag": {
682
+ "type": "array",
683
+ "items": {
684
+ "type": "object",
685
+ "properties": {
686
+ "applicationNumberText": {
687
+ "type": "string",
688
+ "description": "The application number of the patent"
689
+ },
690
+ "foreignPriorityBag": {
691
+ "type": "array",
692
+ "items": {
693
+ "type": "object",
694
+ "properties": {
695
+ "ipOfficeName": {
696
+ "type": "string",
697
+ "description": "Name of the intellectual property office where the foreign priority application was filed"
698
+ },
699
+ "filingDate": {
700
+ "type": "string",
701
+ "description": "Filing date of the foreign priority application (YYYY-MM-DD format)"
702
+ },
703
+ "applicationNumberText": {
704
+ "type": "string",
705
+ "description": "Application number of the foreign priority application"
706
+ }
707
+ }
708
+ }
709
+ }
710
+ }
711
+ }
712
+ },
713
+ "requestIdentifier": {
714
+ "type": "string",
715
+ "description": "Unique identifier for the API request"
716
+ }
717
+ }
718
+ }
719
+ },
720
+ {
721
+ "type": "USPTOOpenDataPortalTool",
722
+ "name": "get_associated_documents_metadata",
723
+ "description": "Obtains metadata for documents associated with an application, such as publications and grants.",
724
+ "api_endpoint": "patent/applications/{applicationNumberText}/associated-documents",
725
+ "parameter": {
726
+ "type": "object",
727
+ "properties": {
728
+ "applicationNumberText": {
729
+ "type": "string",
730
+ "description": "The application number of the patent.",
731
+ "required": true
732
+ }
733
+ }
734
+ },
735
+ "required": [
736
+ "applicationNumberText"
737
+ ],
738
+ "return_fields": [
739
+ "applicationNumberText",
740
+ "grantDocumentMetaData"
741
+ ],
742
+ "required_api_keys": ["USPTO_API_KEY"],
743
+ "return_schema": {
744
+ "type": "object",
745
+ "properties": {
746
+ "error": {
747
+ "type": "string",
748
+ "description": "(if present) Error message if the request fails"
749
+ },
750
+ "details": {
751
+ "type": "object",
752
+ "description": "(if present) Additional details about the error if the request fails"
753
+ },
754
+ "count": {
755
+ "type": "integer",
756
+ "description": "Total number of matching patent applications"
757
+ },
758
+ "patentFileWrapperDataBag": {
759
+ "type": "array",
760
+ "items": {
761
+ "type": "object",
762
+ "properties": {
763
+ "missing_fields": {
764
+ "type": "array",
765
+ "items": {
766
+ "type": "string",
767
+ "description": "Field that was not present in the response"
768
+ },
769
+ "description": "List of fields that were not present in the response"
770
+ },
771
+ "applicationNumberText": {
772
+ "type": "string",
773
+ "description": "The application number of the patent"
774
+ },
775
+ "grantDocumentMetaData": {
776
+ "type": "object",
777
+ "description": "Contains patent grant zip and xml file meta data for an application",
778
+ "properties": {
779
+ "zipFileName": {
780
+ "type": "string",
781
+ "description": "Name of the zip file containing the grant data"
782
+ },
783
+ "productIdentifier": {
784
+ "type": "string",
785
+ "description": "Product identifier for the grant data"
786
+ },
787
+ "fileLocationURI": {
788
+ "type": "string",
789
+ "description": "URI location of the grant file"
790
+ },
791
+ "fileCreateDateTime": {
792
+ "type": "string",
793
+ "description": "Date and time when the file was created"
794
+ },
795
+ "xmlFileName": {
796
+ "type": "string",
797
+ "description": "Name of the XML file containing the grant data"
798
+ }
799
+ }
800
+ }
801
+ }
802
+ }
803
+ },
804
+ "requestIdentifier": {
805
+ "type": "string",
806
+ "description": "Unique identifier for the API request"
807
+ }
808
+ }
809
+ }
810
+ }
811
+ ]