create_media_list
Pack: press-intel · Endpoint: https://gateway.pipeworx.io/press-intel/mcp
Save a set of journalists as a named media list, keeping each one’s score and supporting evidence AS OF NOW. A list is a decision record — the beat profiles move nightly, so re-deriving the scores later would quietly rewrite why someone was on it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | Short unique identifier, e.g. “legalgrounding-fabricated-citations”. |
name | string | yes | Human-readable name for the list. |
journalist_ids | array | yes | Journalists to include. |
items | number | no | |
story_ref | string | no | Optional story identifier this list was built for. |
vertical | string | no | Optional vertical. |
note | string | no | Optional free text — why this list exists. |
evidence | object | no | Optional map of journalist_id to the evidence that put them on the list (typically the match result rows). |
Example call
Arguments
{
"slug": "legalgrounding-fabricated-citations",
"name": "LegalGrounding — AI-fabricated citations",
"journalist_ids": [
1088
],
"vertical": "legal",
"story_ref": "lg-fabricated-citations-2026-08"
}
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":"create_media_list","arguments":{"slug":"legalgrounding-fabricated-citations","name":"LegalGrounding — AI-fabricated citations","journalist_ids":[1088],"vertical":"legal","story_ref":"lg-fabricated-citations-2026-08"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('create_media_list', {
"slug": "legalgrounding-fabricated-citations",
"name": "LegalGrounding — AI-fabricated citations",
"journalist_ids": [
1088
],
"vertical": "legal",
"story_ref": "lg-fabricated-citations-2026-08"
});
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.