organizations
Pack: data-europa · Endpoint: https://gateway.pipeworx.io/data-europa/mcp
List EU open-data portal publishing organizations (EU institutions, member-state agencies, etc.) with their names and dataset counts; limit controls page size (default 100, max 1000).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no |
Example call
Arguments
{
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/data-europa/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"organizations","arguments":{"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('organizations', {
"limit": 10
});
Response shape
| Field | Type | Description |
|---|---|---|
data | array | Array of organizations |
Full JSON Schema
{
"type": "object",
"description": "List of publishing organizations",
"properties": {
"data": {
"type": "array",
"description": "Array of organizations",
"items": {
"type": "object",
"description": "Organization metadata"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-europa": {
"url": "https://gateway.pipeworx.io/data-europa/mcp"
}
}
}
See Getting Started for client-specific install steps.