journalist_recent_coverage
Pack: press-intel · Endpoint: https://gateway.pipeworx.io/press-intel/mcp
What one journalist has published lately, newest first, with our summaries and the topics and entities we extracted. The question this answers before an outreach: are they still on this beat, and what did they just write.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
journalist_id | number | yes | Journalist id. |
days | number | no | Look-back window in days (default 90). |
limit | number | no | Max articles (default 20, max 100). |
Example call
Arguments
{
"journalist_id": 1088,
"days": 90,
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/press-intel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"journalist_recent_coverage","arguments":{"journalist_id":1088,"days":90,"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('journalist_recent_coverage', {
"journalist_id": 1088,
"days": 90,
"limit": 10
});
Connect
Add this to your MCP client config:
{
"mcpServers": {
"press-intel": {
"url": "https://gateway.pipeworx.io/press-intel/mcp"
}
}
}
See Getting Started for client-specific install steps.