search
Pack: dbnomics · Endpoint: https://gateway.pipeworx.io/dbnomics/mcp
Full-text search across all providers. Returns matching series with provider/dataset/series codes and human labels.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Free-text search |
limit | number | no | Results, 1-1000 (default 20) |
offset | number | no | 0-based offset |
Example call
Arguments
{
"query": "unemployment rate"
}
curl
curl -X POST https://gateway.pipeworx.io/dbnomics/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"query":"unemployment rate"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search', {
"query": "unemployment rate"
});
More examples
{
"query": "GDP France",
"limit": 50
}
Response shape
| Field | Type | Description |
|---|---|---|
_meta | object | |
results | object |
Full JSON Schema
{
"type": "object",
"properties": {
"_meta": {
"type": "object",
"properties": {
"args": {
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"q": {
"type": "string"
}
}
},
"version": {
"type": "string"
}
}
},
"results": {
"type": "object",
"properties": {
"docs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"dir_hash": {
"type": "string"
},
"indexed_at": {
"type": "string"
},
"name": {
"type": "string"
},
"nb_matching_series": {
"type": "number"
},
"nb_series": {
"type": "number"
},
"provider_code": {
"type": "string"
},
"provider_name": {
"type": "string"
},
"updated_at": {
"type": "string"
}
}
}
},
"limit": {
"type": "number"
},
"num_found": {
"type": "number"
},
"offset": {
"type": "number"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dbnomics": {
"url": "https://gateway.pipeworx.io/dbnomics/mcp"
}
}
}
See Getting Started for client-specific install steps.