get_podcast_by_url
Pack: fyyd · Endpoint: https://gateway.pipeworx.io/fyyd/mcp
Resolve an RSS feed URL to its fyyd id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
feed_url | string | yes |
Example call
Arguments
{
"feed_url": "https://feeds.example.com/podcast.xml"
}
curl
curl -X POST https://gateway.pipeworx.io/fyyd/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_podcast_by_url","arguments":{"feed_url":"https://feeds.example.com/podcast.xml"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_podcast_by_url', {
"feed_url": "https://feeds.example.com/podcast.xml"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Podcast information resolved from RSS feed URL"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fyyd": {
"url": "https://gateway.pipeworx.io/fyyd/mcp"
}
}
}
See Getting Started for client-specific install steps.