prnewswire_get_release

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

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

Fetch one specific PR Newswire release by its URL (source: prnewswire.com), as returned by

Parameters

NameTypeRequiredDescription
urlstringyesThe release URL (from a prior prnewswire tool call).

Example call

Arguments

{
  "url": "https://www.prnewswire.com/news-releases/1-week-capr-investor-deadline-capricor-therapeutics-inc-investors-with-substantial-losses-have-opportunity-to-lead-class-action-lawsuit-302884246.html"
}

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_get_release","arguments":{"url":"https://www.prnewswire.com/news-releases/1-week-capr-investor-deadline-capricor-therapeutics-inc-investors-with-substantial-losses-have-opportunity-to-lead-class-action-lawsuit-302884246.html"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('prnewswire_get_release', {
  "url": "https://www.prnewswire.com/news-releases/1-week-capr-investor-deadline-capricor-therapeutics-inc-investors-with-substantial-losses-have-opportunity-to-lead-class-action-lawsuit-302884246.html"
});

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