rss_parse
Fetch/parse an RSS or Atom feed into JSON. Saves 90%+ tokens vs raw XML.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Feed URL. | |
| maxItems | No | Max 200. |
Fetch/parse an RSS or Atom feed into JSON. Saves 90%+ tokens vs raw XML.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Feed URL. | |
| maxItems | No | Max 200. |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Input schema / properties / url / descriptionAdded value: +"Feed URL."Input schema / properties / maxItems / descriptionPrevious value: -"Max feed items to return (default 20, max 200)."New value: +"Max 200."Input schema / properties / url / descriptionRemoved value: -"RSS or Atom feed URL (http:// or https://)."Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds the behavioral detail that it parses both RSS and Atom formats and returns JSON, plus a token-saving benefit. It does not disclose error handling or rate limits, but the bar is lowered by the readOnlyHint annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is concise and information-dense, with no wasted words. Every part adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 params, full schema coverage, readOnlyHint annotation), the description is adequate. It specifies input (RSS/Atom) and output (JSON) and adds a useful performance note. It doesn't explain return structure, but an output schema is absent and not strictly required.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (both url and maxItems have descriptions), so the baseline is 3. The tool description does not add parameter-specific meaning beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool fetches/parses RSS or Atom feeds into JSON, using a specific verb and resource. It distinguishes from siblings like sitemap_parse and fetch_html by the feed-specific resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied by the resource type (RSS/Atom feed) but the description does not explicitly state when to use this tool vs alternatives or provide exclusion criteria. The token-saving note hints at a use case but is not a direct guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Several tools overlap in fetching and processing web content (fetch_extract, fetch_html, fetch_metadata, html_to_markdown), which could confuse an agent. However, descriptions clarify output types, so most tools are distinguishable.
Names follow mixed conventions: verb_noun (fetch_html, remove_background), noun_verb (csv_query, rss_parse), and noun_noun (tool_catalog, screenshot_url). Each name is descriptive, but the lack of a consistent pattern makes it harder to guess tool names.
With 17 tools, the count is slightly above the ideal 3-15 range but still manageable. The inclusion of 5 meta-tools (pricing, tool_catalog, task_recipes, memory_snippet, use_tool) inflates the count but serves a discovery purpose.
The toolkit covers a broad range of web and data tasks (fetch, parse, query, convert, image, SEO). Minor gaps exist (e.g., no OCR, no image editing), but use_tool can dynamically access additional tools, mitigating incompleteness.