record_podcast_outreach

Pack: pod-researcher · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/record_podcast_outreach for the schema, then POST the same URL with its arguments for the data.

Signed-in accounts: record what happened when you reached out to a podcast, so find_podcast_contacts stops suggesting it. outcome: contacted, replied, declined, booked, bounced, do_not_contact or clear (clear lifts an earlier do_not_contact). Name the show by show_id. For a PERSON-level record (e.g. the host asked never to be contacted about any of their shows), pass scope ‘person’ and the contact_id of their email route from get_podcast_profile: every show that publishes that address is then left out of your searches. Never pass an email address: a call carrying one is refused and nothing is recorded. History is private to your account.

Parameters

NameTypeRequiredDescription
show_idintegeryesThe show, from find_podcast_contacts or get_podcast_profile.
outcomestringyesWhat happened.
scopestringno’show’ (default) records against the show; ‘person’ records against the person behind an email route (needs contact_id).
contact_idintegernoThe route you used, from best_route.contact_id or get_podcast_profile routes. Required when scope is person.

Example call

Arguments

{
  "show_id": 5830812,
  "outcome": "contacted"
}

curl

curl -X POST https://gateway.pipeworx.io/pod-researcher/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"record_podcast_outreach","arguments":{"show_id":5830812,"outcome":"contacted"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('record_podcast_outreach', {
  "show_id": 5830812,
  "outcome": "contacted"
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the pod-researcher pack
{
  "mcpServers": {
    "pod-researcher": {
      "url": "https://gateway.pipeworx.io/pod-researcher/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026