Text Processing
Fetch an RSS or Atom feed by URL (or paste raw XML), parse it, sort items by publish date, deduplicate, apply a time window, and output a clean Markdown summary
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/rss-feed-markdown-summarizer' \
-H 'Content-Type: application/json' \
-d '{"source":"https://news.ycombinator.com/rss","maxItems":10,"sort":"newest","window":"all","dedup":"off","format":"html","incTitle":true,"incSummary":true,"incAuthor":false,"incDate":true,"incLink":true,"incCategories":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/rss-feed-markdown-summarizer| Name | Type | Required | Description |
|---|---|---|---|
| source | textarea | Yes | — |
| maxItems | number | No | — |
| sort | select | No | — |
| window | select | No | — |
| dedup | select | No | — |
| format |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-rss-feed-markdown-summarizer": {
"name": "rss-feed-markdown-summarizer",
"description": "Fetch an RSS or Atom feed by URL (or paste raw XML), parse it, sort items by publish date, deduplicate, apply a time window, and output a clean Markdown summary",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=rss-feed-markdown-summarizer",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "rss-feed-markdown-summarizer",
"arguments": {
"source": "https://news.ycombinator.com/rss",
"maxItems": 10,
"sort": "newest",
"window": "all",
"dedup": "off",
"format": "html",
"incTitle": true,
"incSummary": true,
"incAuthor": false,
"incDate": true,
"incLink": true,
"incCategories": false
}
}
}| select |
| No |
| — |
| incTitle | checkbox | No | — |
| incSummary | checkbox | No | — |
| incAuthor | checkbox | No | — |
| incDate | checkbox | No | — |
| incLink | checkbox | No | — |
| incCategories | checkbox | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]