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

NameTypeRequiredDescription
_apiKeystringyesBPS App ID (API key)
modelstringyesObject type: one of statictable, publication, pressrelease, news.
idstringyesThe object id (from bps_list results).
domainstringnoBPS domain/region code. “0000” = national (default).
langstringnoLanguage: “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.

Regenerated from source · build August 28, 2026