list_feeds
Pack: finance-feeds · Endpoint: https://gateway.pipeworx.io/finance-feeds/mcp
List the curated finance & markets feeds (id, title, category, source). Optionally filter by category (finance) or keyword. Pass an id to read_feed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
category | string | no | Filter by category: finance. |
query | string | no | Keyword to match in feed title/source/description. |
Example call
Arguments
{
"category": "finance"
}
curl
curl -X POST https://gateway.pipeworx.io/finance-feeds/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_feeds","arguments":{"category":"finance"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_feeds', {
"category": "finance"
});
More examples
{
"query": "stocks"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"finance-feeds": {
"url": "https://gateway.pipeworx.io/finance-feeds/mcp"
}
}
}
See Getting Started for client-specific install steps.