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

NameTypeRequiredDescription
querystringnoText to match in the headline. Case-insensitive.
outletstringnoOutlet name or slug fragment.
verticalstringnoVertical the article scored into, e.g. “legal”.
sincestringnoISO date; only articles published on or after it.
limitnumbernoMax 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.

Regenerated from source · build August 28, 2026