subjects
Pack: stat-lv · Endpoint: https://gateway.pipeworx.io/stat-lv/mcp
Navigate the subject tree. Root (empty path) lists database folders (e.g. OSP_PUB); drill into sub-paths — entries with type “l” are folders, type “t” are tables.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
path | string | no | Sub-path under the API base (default empty = root, lists databases like OSP_PUB). |
Example call
Arguments
{
"path": ""
}
curl
curl -X POST https://gateway.pipeworx.io/stat-lv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"subjects","arguments":{"path":""}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('subjects', {
"path": ""
});
More examples
{
"path": "OSP_PUB/POP"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"stat-lv": {
"url": "https://gateway.pipeworx.io/stat-lv/mcp"
}
}
}
See Getting Started for client-specific install steps.