dataset_files

Pack: dataverse-harvard · Endpoint: https://gateway.pipeworx.io/dataverse-harvard/mcp

List files in a dataset.

Parameters

NameTypeRequiredDescription
persistent_idstringyes

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

FieldTypeDescription
statusstringAPI response status
dataobjectDataset 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.

Regenerated from source · build May 21, 2026