get_media_list
Pack: press-intel · Endpoint: https://gateway.pipeworx.io/press-intel/mcp
Read back a saved media list: its members with the score and evidence recorded when it was built, plus each journalist’s current contact points and beat. Pass no slug to list every saved list.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | no | List slug. Omit to enumerate all lists. |
Example call
Arguments
{
"slug": "legalgrounding-fabricated-citations"
}
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_media_list","arguments":{"slug":"legalgrounding-fabricated-citations"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_media_list', {
"slug": "legalgrounding-fabricated-citations"
});
More examples
{}
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.