package
Pack: data-europa · Endpoint: https://gateway.pipeworx.io/data-europa/mcp
Fetch a single EU open-data dataset record by its portal ID, returning full metadata including title, description, publisher, license, distributions, and tags.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "eu-trade-data-2023"
}
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":"package","arguments":{"id":"eu-trade-data-2023"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('package', {
"id": "eu-trade-data-2023"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Single dataset details from data.europa.eu"
}
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.