search_datasets
Pack: eurostat · Endpoint: https://gateway.pipeworx.io/eurostat/mcp
Search for Eurostat datasets by keyword. Returns dataset codes, titles, and update dates. Example: search_datasets({ query: “unemployment rate” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search keyword, e.g. “gdp”, “unemployment”, “inflation”, “population” |
Example call
Arguments
{
"query": "unemployment rate"
}
curl
curl -X POST https://gateway.pipeworx.io/eurostat/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_datasets","arguments":{"query":"unemployment rate"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_datasets', {
"query": "unemployment rate"
});
More examples
{
"query": "inflation"
}
Response shape
Always returns: count, datasets
| Field | Type | Description |
|---|---|---|
count | number | Number of datasets found (up to 30) |
datasets | array | List of matching datasets |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of datasets found (up to 30)"
},
"datasets": {
"type": "array",
"description": "List of matching datasets",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Dataset code identifier"
},
"title": {
"type": "string",
"description": "Dataset title"
},
"last_update": {
"type": [
"string",
"null"
],
"description": "Last update date"
},
"description": {
"type": [
"string",
"null"
],
"description": "Short description (truncated to 200 chars)"
}
},
"required": [
"code",
"title"
]
}
}
},
"required": [
"count",
"datasets"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"eurostat": {
"url": "https://gateway.pipeworx.io/eurostat/mcp"
}
}
}
See Getting Started for client-specific install steps.