businesswire_search_releases
Pack: businesswire · Endpoint: https://gateway.pipeworx.io/businesswire/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/businesswire_search_releases for the schema, then POST the same URL with its arguments for the data.
Keyword/company search over Business Wire’s current all-news channel (source: businesswire.com). Matches
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Company name or keyword to match. |
since_hours | number | no | Only consider releases published within the last N hours (optional). |
limit | number | no | Max matches to return, 1-${MAX_LIMIT} (default 20). |
Example call
Arguments
{
"query": "acquisition",
"language": "en",
"since_hours": 24
}
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_search_releases","arguments":{"query":"acquisition","language":"en","since_hours":24}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('businesswire_search_releases', {
"query": "acquisition",
"language": "en",
"since_hours": 24
});
More examples
{
"query": "Intrepid Fiber Networks"
}
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.