search
Pack: data-europa · Endpoint: https://gateway.pipeworx.io/data-europa/mcp
Search datasets.
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
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":{}}}'
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.