read_feed

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

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

Read a curated gaming feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

Parameters

NameTypeRequiredDescription
feedstringyesCurated feed id (from list_feeds).
querystringnoKeyword filter over item title/summary.
limitnumbernoMax items (1-50, default 20).

Example call

Arguments

{
  "feed": "ign"
}

curl

curl -X POST https://gateway.pipeworx.io/gaming-feeds/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"read_feed","arguments":{"feed":"ign"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('read_feed', {
  "feed": "ign"
});

More examples

{
  "feed": "polygon",
  "query": "game",
  "limit": 10
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026