search_articles
Pack: press-intel · Endpoint: https://gateway.pipeworx.io/press-intel/mcp
Search the press corpus by headline text, outlet, vertical or date. Returns headline, URL, outlet, publication date, our summary, and the bylined journalists. Use this to check what has already been written about something before pitching it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Text to match in the headline. Case-insensitive. |
outlet | string | no | Outlet name or slug fragment. |
vertical | string | no | Vertical the article scored into, e.g. “legal”. |
since | string | no | ISO date; only articles published on or after it. |
limit | number | no | Max articles (default 25, max 100). |
Example call
Arguments
{
"query": "citation",
"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":"search_articles","arguments":{"query":"citation","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_articles', {
"query": "citation",
"limit": 10
});
More examples
{
"vertical": "legal",
"since": "2026-08-01",
"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.