table_meta
Pack: sistat-si · Endpoint: https://gateway.pipeworx.io/sistat-si/mcp
Table definition (dimensions, valid values). Path is the .px table id, e.g. “0156101S.px”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
path | string | yes | e.g. “0156101S.px” (include the .px suffix) |
Example call
Arguments
{
"path": "0156101S.px"
}
curl
curl -X POST https://gateway.pipeworx.io/sistat-si/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"table_meta","arguments":{"path":"0156101S.px"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('table_meta', {
"path": "0156101S.px"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sistat-si": {
"url": "https://gateway.pipeworx.io/sistat-si/mcp"
}
}
}
See Getting Started for client-specific install steps.