businesswire_get_release
Pack: businesswire · Endpoint: https://gateway.pipeworx.io/businesswire/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/businesswire_get_release for the schema, then POST the same URL with its arguments for the data.
Fetch one specific Business Wire release by its URL or release id (source: businesswire.com), as returned
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The release URL or release_id (e.g. 20260921847964en) from a prior businesswire tool call. |
Example call
Arguments
{
"url": "https://www.businesswire.com/news/home/20260921031587/en/Intrepid-Fiber-Networks-Completes-Acquisition-of-Ubiquity%E2%80%99s-Southern-California-Fiber-Network"
}
curl
curl -X POST https://gateway.pipeworx.io/businesswire/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"businesswire_get_release","arguments":{"url":"https://www.businesswire.com/news/home/20260921031587/en/Intrepid-Fiber-Networks-Completes-Acquisition-of-Ubiquity%E2%80%99s-Southern-California-Fiber-Network"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('businesswire_get_release', {
"url": "https://www.businesswire.com/news/home/20260921031587/en/Intrepid-Fiber-Networks-Completes-Acquisition-of-Ubiquity%E2%80%99s-Southern-California-Fiber-Network"
});
More examples
{
"url": "20260921031587en"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"businesswire": {
"url": "https://gateway.pipeworx.io/businesswire/mcp"
}
}
}
See Getting Started for client-specific install steps.