businesswire_latest_releases
Pack: businesswire · Endpoint: https://gateway.pipeworx.io/businesswire/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/businesswire_latest_releases for the schema, then POST the same URL with its arguments for the data.
Latest press releases from Business Wire’s all-news RSS channel (source: businesswire.com). Returns headline,
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since_hours | number | no | Only return releases published within the last N hours (optional; the window covers about 168). |
limit | number | no | Max releases to return, 1-${MAX_LIMIT} (default 20). |
Example call
Arguments
{}
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_latest_releases","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('businesswire_latest_releases', {});
More examples
{
"language": "en",
"since_hours": 24,
"limit": 10
}
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.