rss

Pack: gdacs · Endpoint: https://gateway.pipeworx.io/gdacs/mcp

Raw RSS feed (XML text).

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('rss', {});

Response shape

Always returns: format, body

FieldTypeDescription
formatstringFormat identifier for RSS feed
bodystringRaw RSS feed XML text
Full JSON Schema
{
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "rss-xml"
      ],
      "description": "Format identifier for RSS feed"
    },
    "body": {
      "type": "string",
      "description": "Raw RSS feed XML text"
    }
  },
  "required": [
    "format",
    "body"
  ]
}

Connect

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

{
  "mcpServers": {
    "gdacs": {
      "url": "https://gateway.pipeworx.io/gdacs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026