newswire_com_get_release
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_get_release for the schema, then POST the same URL with its arguments for the data.
Fetch one specific Newswire.com release by its URL (source: newswire.com), as returned by
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The release URL (from a prior newswire_com tool call). |
Example call
Arguments
{
"url": "https://www.newswire.com/news/from-field-devices-to-the-cloud-five-design-considerations-for-industrial-5g"
}
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_get_release","arguments":{"url":"https://www.newswire.com/news/from-field-devices-to-the-cloud-five-design-considerations-for-industrial-5g"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('newswire_com_get_release', {
"url": "https://www.newswire.com/news/from-field-devices-to-the-cloud-five-design-considerations-for-industrial-5g"
});
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.