list_feeds

Pack: space-feeds · 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/list_feeds for the schema, then POST the same URL with its arguments for the data.

List the curated space & spaceflight feeds (id, title, category, source). Optionally filter by category (space) or keyword. Pass an id to read_feed.

Parameters

NameTypeRequiredDescription
categorystringnoFilter by category: space.
querystringnoKeyword to match in feed title/source/description.

Example call

Arguments

{
  "category": "space"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_feeds', {
  "category": "space"
});

More examples

{
  "query": "spacex"
}

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 space-feeds pack
{
  "mcpServers": {
    "space-feeds": {
      "url": "https://gateway.pipeworx.io/space-feeds/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026