newswire_com_search_releases
Pack: newswire-com · Endpoint: https://gateway.pipeworx.io/newswire-com/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/newswire_com_search_releases for the schema, then POST the same URL with its arguments for the data.
Keyword/company search over Newswire.com’s current newsroom feed (source: newswire.com). Matches against
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Company name or keyword to match. |
limit | number | no | Max matches to return, 1-${MAX_LIMIT} (default 20). |
Example call
Arguments
{
"query": "InHand Networks"
}
curl
curl -X POST https://gateway.pipeworx.io/newswire-com/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"newswire_com_search_releases","arguments":{"query":"InHand Networks"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('newswire_com_search_releases', {
"query": "InHand Networks"
});
More examples
{
"query": "5G",
"limit": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"newswire-com": {
"url": "https://gateway.pipeworx.io/newswire-com/mcp"
}
}
}
See Getting Started for client-specific install steps.