prweb_get_release
Pack: prweb · Endpoint: https://gateway.pipeworx.io/prweb/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/prweb_get_release for the schema, then POST the same URL with its arguments for the data.
Fetch one specific PRWeb release by its URL (source: prweb.com), as returned by prweb_latest_releases or
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The release URL (from a prior prweb tool call). |
Example call
Arguments
{
"url": "https://www.prweb.com/releases/vets-celebrates-governor-newsoms-signing-of-ab-113-delivering-californias-first-ever-state-investment-in-veteran-psychedelic-assisted-therapy-research-302884996.html"
}
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_get_release","arguments":{"url":"https://www.prweb.com/releases/vets-celebrates-governor-newsoms-signing-of-ab-113-delivering-californias-first-ever-state-investment-in-veteran-psychedelic-assisted-therapy-research-302884996.html"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('prweb_get_release', {
"url": "https://www.prweb.com/releases/vets-celebrates-governor-newsoms-signing-of-ab-113-delivering-californias-first-ever-state-investment-in-veteran-psychedelic-assisted-therapy-research-302884996.html"
});
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.