prnewswire_search_releases

Pack: prnewswire · Endpoint: https://gateway.pipeworx.io/prnewswire/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/prnewswire_search_releases for the schema, then POST the same URL with its arguments for the data.

Keyword/company search over PR Newswire’s current site-wide feed (source: prnewswire.com). Matches against

Parameters

NameTypeRequiredDescription
querystringyesCompany name or keyword to match.
limitnumbernoMax matches to return (default 20).

Example call

Arguments

{
  "query": "Robbins Geller Rudman & Dowd LLP"
}

curl

curl -X POST https://gateway.pipeworx.io/prnewswire/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"prnewswire_search_releases","arguments":{"query":"Robbins Geller Rudman & Dowd LLP"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('prnewswire_search_releases', {
  "query": "Robbins Geller Rudman & Dowd LLP"
});

More examples

{
  "query": "Procter & Gamble",
  "limit": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "prnewswire": {
      "url": "https://gateway.pipeworx.io/prnewswire/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026