fetch_feed

Pack: food-feeds · Endpoint: https://gateway.pipeworx.io/food-feeds/mcp

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.

Parameters

NameTypeRequiredDescription
urlstringyesFeed URL, e.g. “https://news.ycombinator.com/rss”.
querystringnoKeyword filter over item title/summary.
limitnumbernoMax items (1-50, default 20).

Example call

Arguments

{
  "url": "https://www.seriouseats.com/feeds/rss.xml"
}

curl

curl -X POST https://gateway.pipeworx.io/food-feeds/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fetch_feed","arguments":{"url":"https://www.seriouseats.com/feeds/rss.xml"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fetch_feed', {
  "url": "https://www.seriouseats.com/feeds/rss.xml"
});

More examples

{
  "url": "https://www.bonappetitmag.com/feed/rss",
  "query": "pasta",
  "limit": 15
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "food-feeds": {
      "url": "https://gateway.pipeworx.io/food-feeds/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 8, 2026