list_feeds

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

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 cybersecurity feeds (id, title, category, source). Optionally filter by category (security) or keyword. Pass an id to read_feed.

Parameters

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

Example call

Arguments

{
  "category": "security"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "vulnerability"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026