bps_view
Pack: bps-id · Endpoint: https://gateway.pipeworx.io/bps-id/mcp
Fetch a single BPS object by id — full detail for one statictable, publication, pressrelease, or news item.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | BPS App ID (API key) |
model | string | yes | Object type: one of statictable, publication, pressrelease, news. |
id | string | yes | The object id (from bps_list results). |
domain | string | no | BPS domain/region code. “0000” = national (default). |
lang | string | no | Language: “eng” (default) or “ind”. |
Example call
Arguments
{
"_apiKey": "your-bps-id-api-key",
"model": "publication",
"id": "5678"
}
curl
curl -X POST https://gateway.pipeworx.io/bps-id/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bps_view","arguments":{"_apiKey":"your-bps-id-api-key","model":"publication","id":"5678"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bps_view', {
"_apiKey": "your-bps-id-api-key",
"model": "publication",
"id": "5678"
});
More examples
{
"_apiKey": "your-bps-id-api-key",
"model": "pressrelease",
"id": "1234",
"lang": "ind"
}
Connect
Add this to your MCP client config:
{
"mcpServers": {
"bps-id": {
"url": "https://gateway.pipeworx.io/bps-id/mcp"
}
}
}
See Getting Started for client-specific install steps.