You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Get an overview of the Dataverse installations around the world sorted by country. Entrance point for the overview tools if no hosts are provided.",
217
+
inputSchema={
218
+
"type": "object",
219
+
"required": [],
220
+
"properties": {},
221
+
},
222
+
),
223
+
types.Tool(
224
+
name="overview_datasets",
225
+
endpoint="/overview/datasets",
226
+
description="Get an overview of the Dataverse datasets statistics by host",
227
+
inputSchema={
228
+
"type": "object",
229
+
"required": ["host"],
230
+
"properties": {
231
+
"host": {"type": "string", "description": "Host of the Dataverse installation (e.g. dataverse.nl)"}
232
+
},
233
+
},
234
+
),
235
+
types.Tool(
236
+
name="overview_files",
237
+
endpoint="/overview/files",
238
+
description="Get an overview of the Dataverse files statistics by host",
239
+
inputSchema={
240
+
"type": "object",
241
+
"required": ["host"],
242
+
"properties": {
243
+
"host": {"type": "string", "description": "Host of the Dataverse installation (e.g. dataverse.nl)"}
244
+
},
245
+
},
246
+
),
247
+
types.Tool(
248
+
name="search_datasets",
249
+
endpoint="/search/datasets",
250
+
description="Search for datasets in a Dataverse installation",
251
+
inputSchema={
252
+
"type": "object",
253
+
"required": ["host", "query"],
254
+
"properties": {
255
+
"host": {"type": "string", "description": "Host of the Dataverse installation (e.g. dataverse.nl)"},
256
+
"query": {"type": "string", "description": "Query to search for datasets"}
0 commit comments