dataset_files
Pack: dataverse-harvard · Endpoint: https://gateway.pipeworx.io/dataverse-harvard/mcp
List files in a dataset.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
persistent_id | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/dataverse-harvard/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_files","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
status | string | API response status |
data | object | Dataset files data |
Full JSON Schema
{
"type": "object",
"description": "Files in a dataset",
"properties": {
"status": {
"type": "string",
"description": "API response status"
},
"data": {
"type": "object",
"description": "Dataset files data",
"properties": {
"files": {
"type": "array",
"description": "Array of files in dataset",
"items": {
"type": "object",
"description": "File metadata",
"properties": {
"datafile": {
"type": "object",
"description": "Datafile details"
}
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dataverse-harvard": {
"url": "https://gateway.pipeworx.io/dataverse-harvard/mcp"
}
}
}
See Getting Started for client-specific install steps.