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

NameTypeRequiredDescription
slugstringyesShort unique identifier, e.g. “legalgrounding-fabricated-citations”.
namestringyesHuman-readable name for the list.
journalist_idsarrayyesJournalists to include.
itemsnumberno
story_refstringnoOptional story identifier this list was built for.
verticalstringnoOptional vertical.
notestringnoOptional free text — why this list exists.
evidenceobjectnoOptional 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.

Regenerated from source · build August 28, 2026