publishers
Pack: datos-gob-es · Endpoint: https://gateway.pipeworx.io/datos-gob-es/mcp
List publishers.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no |
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":"publishers","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Array of publisher objects |
Full JSON Schema
{
"type": "object",
"description": "List of publishers from datos.gob.es",
"properties": {
"results": {
"type": "array",
"description": "Array of publisher objects",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Publisher identifier"
},
"name": {
"type": "string",
"description": "Publisher name"
},
"description": {
"type": "string",
"description": "Publisher description"
}
}
}
}
}
}
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.