dataset
Pack: datos-gob-es · Endpoint: https://gateway.pipeworx.io/datos-gob-es/mcp
Single dataset.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/datos-gob-es/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Dataset identifier |
title | string | Dataset title |
description | string | Dataset description |
theme | string | Dataset theme category |
publisher | string | Publisher name |
issued | string | Publication date |
modified | string | Last modification date |
distributions | array | Available data distributions |
Full JSON Schema
{
"type": "object",
"description": "Single dataset details from datos.gob.es",
"properties": {
"id": {
"type": "string",
"description": "Dataset identifier"
},
"title": {
"type": "string",
"description": "Dataset title"
},
"description": {
"type": "string",
"description": "Dataset description"
},
"theme": {
"type": "string",
"description": "Dataset theme category"
},
"publisher": {
"type": "string",
"description": "Publisher name"
},
"issued": {
"type": "string",
"description": "Publication date"
},
"modified": {
"type": "string",
"description": "Last modification date"
},
"distributions": {
"type": "array",
"description": "Available data distributions",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Distribution identifier"
},
"title": {
"type": "string",
"description": "Distribution title"
},
"format": {
"type": "string",
"description": "Data format (CSV, JSON, etc.)"
},
"accessUrl": {
"type": "string",
"description": "URL to access the distribution"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"datos-gob-es": {
"url": "https://gateway.pipeworx.io/datos-gob-es/mcp"
}
}
}
See Getting Started for client-specific install steps.