get_journalist
Pack: press-intel · Endpoint: https://gateway.pipeworx.io/press-intel/mcp
Everything the corpus holds on one journalist: outlet and employment history, beat profiles across verticals, published contact points with provenance, recent articles, and any recorded outreach. Takes the id from a match or search result.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
journalist_id | number | yes | Journalist id from match_story_to_journalists or search_journalists. |
article_limit | number | no | How many recent articles to include (default 10, max 50). |
Example call
Arguments
{
"journalist_id": 1088,
"article_limit": 5
}
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":"get_journalist","arguments":{"journalist_id":1088,"article_limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_journalist', {
"journalist_id": 1088,
"article_limit": 5
});
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.