search
Pack: data-europa · Endpoint: https://gateway.pipeworx.io/data-europa/mcp
Search the EU open-data portal (data.europa.eu) for datasets by free-text query; supports Solr filter expressions (e.g. country.iso:DE), pagination via rows/start, and sorting. Returns dataset titles, descriptions, and publisher info.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
fq | string | no | Solr filter (e.g. “country.iso:DE”). |
rows | number | no | 1-1000 (default 25). |
start | number | no | |
sort | string | no |
Example call
Arguments
{
"query": "agriculture exports"
}
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":"search","arguments":{"query":"agriculture exports"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search', {
"query": "agriculture exports"
});
More examples
{
"query": "employment statistics",
"fq": "country.iso:DE",
"rows": 50
}
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Array of matching datasets |
count | number | Total number of matching results |
Full JSON Schema
{
"type": "object",
"description": "Search results from data.europa.eu API",
"properties": {
"results": {
"type": "array",
"description": "Array of matching datasets",
"items": {
"type": "object",
"description": "Dataset metadata"
}
},
"count": {
"type": "number",
"description": "Total number of matching results"
}
}
}
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.