Explore enriched news content with our Free MCP Discovery API. Search through metadata, filter by categories, and discover what's available before upgrading to full content access.
Get StartedThis page allows developers to quickly preview the enriched content available on the SimpleFeed MCP server as "search results".
You can ask MCP questions and receive articles and videos that can enhance your AI applications.
Access to content with cleared rights and enriched metadata is available for purchase on AWS Marketplace.
Usage requires an MCP-compatible application.
Search in our Free MCP is limited to 50 queries and is not intended for commercial use.
If you can't find the content you need, Contact us.
Two-way sync: changes in the Settings tab appear here when you switch to this tab. Edit the JSON and click Apply JSON to form to update the form. Copy the JSON to use in your MCP client.
filters in JSON)Comparison operators (use as field value, e.g. "publish_date_ts": { "$gte": 1767225600 }):
$eq — equals (string, number, boolean)$ne — not equals$gt — greater than (numbers, timestamps)$gte — greater than or equal$lt — less than$lte — less than or equal$in — value in list (e.g. { "$in": ["sports", "news"] })$nin — value not in list$exists — field present (boolean)Where to use:
publish_date_ts, length_words, length_chars, duration_seconds — use $gt, $gte, $lt, $lte, $eq.category, language, media_type, sentiment, publisher_identifier — use $eq, $ne or plain value.categories, keywords, entities — use $in, $nin or plain array (treated as $in).has_image, has_video, has_audio — use $eq or plain true/false.Combine conditions: wrap in $and or $or, e.g. "$and": [ { "category": "sports" }, { "length_words": { "$lte": 500 } } ].