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