tables_for_operation
Pack: ine-es · Endpoint: https://gateway.pipeworx.io/ine-es/mcp
List the statistical tables belonging to one INE operation. operationId may be the numeric Id (e.g. 25) or the operation code (e.g. “IPC”, “EPA”). Each table has an Id used by series_in_table / table_data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
operationId | string | yes | Numeric Id or code, e.g. “IPC”, “EPA”, “25”. |
lang | string | no | Response language. Default EN. |
Example call
Arguments
{
"operationId": "IPC"
}
curl
curl -X POST https://gateway.pipeworx.io/ine-es/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tables_for_operation","arguments":{"operationId":"IPC"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tables_for_operation', {
"operationId": "IPC"
});
More examples
{
"operationId": "EPA",
"lang": "ES"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ine-es": {
"url": "https://gateway.pipeworx.io/ine-es/mcp"
}
}
}
See Getting Started for client-specific install steps.