refresh_podcast
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/refresh_podcast for the schema, then POST the same URL with its arguments for the data.
Ask for one podcast’s RSS feed to be read again now rather than at its next scheduled check. Returns the show’s current state and when the refresh was queued; new episodes show up in get_podcast_profile once the feed has been read (normally within minutes). Contact routes are re-checked separately, not by this call.
Example call
Arguments
{
"id": "5830812"
}
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":"refresh_podcast","arguments":{"id":"5830812"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('refresh_podcast', {
"id": "5830812"
});
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.