dataverse
Pack: dataverse-harvard · Endpoint: https://gateway.pipeworx.io/dataverse-harvard/mcp
Dataverse (collection) metadata by alias or id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
identifier | 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":"dataverse","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
status | string | API response status |
data | object | Dataverse metadata |
Full JSON Schema
{
"type": "object",
"description": "Dataverse collection metadata",
"properties": {
"status": {
"type": "string",
"description": "API response status"
},
"data": {
"type": "object",
"description": "Dataverse metadata",
"properties": {
"id": {
"type": "integer",
"description": "Dataverse ID"
},
"identifier": {
"type": "string",
"description": "Dataverse alias or identifier"
},
"name": {
"type": "string",
"description": "Dataverse name"
},
"type": {
"type": "string",
"description": "Dataverse type"
},
"affiliation": {
"type": "string",
"description": "Affiliated institution"
},
"description": {
"type": "string",
"description": "Dataverse description"
},
"dataverseContacts": {
"type": "array",
"description": "Contact information",
"items": {
"type": "object"
}
}
}
}
}
}
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.