Nefino MCP Server

Official

StartNewsRetrieval

Start an asynchronous news retrieval task for a place

Input Schema

NameRequiredDescriptionDefault
date_range_beginNoStart date in YYYY-MM-DD format (when range_or_recency=RANGE)
date_range_endNoEnd date in YYYY-MM-DD format (when range_or_recency=RANGE)
last_n_daysNoNumber of days to search for (when range_or_recency=RECENCY)
news_topicsNoList of topics to filter by
place_idYesThe id of the place
place_typeYesThe type of the place (PR, CTY, AU, LAU)
range_or_recencyNoType of search (RANGE or RECENCY)

Input Schema (JSON Schema)

{ "$defs": { "NewsTopic": { "enum": [ "batteryStorage", "gridExpansion", "solar", "hydrogen", "wind" ], "title": "NewsTopic", "type": "string" }, "PlaceTypeNews": { "enum": [ "PR", "CTY", "AU", "LAU" ], "title": "PlaceTypeNews", "type": "string" }, "RangeOrRecency": { "enum": [ "RANGE", "RECENCY" ], "title": "RangeOrRecency", "type": "string" } }, "properties": { "date_range_begin": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Start date in YYYY-MM-DD format (when range_or_recency=RANGE)", "title": "Date Range Begin" }, "date_range_end": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "End date in YYYY-MM-DD format (when range_or_recency=RANGE)", "title": "Date Range End" }, "last_n_days": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "description": "Number of days to search for (when range_or_recency=RECENCY)", "title": "Last N Days" }, "news_topics": { "anyOf": [ { "items": { "$ref": "#/$defs/NewsTopic" }, "type": "array" }, { "type": "null" } ], "default": null, "description": "List of topics to filter by", "title": "News Topics" }, "place_id": { "description": "The id of the place", "title": "Place Id", "type": "string" }, "place_type": { "$ref": "#/$defs/PlaceTypeNews", "description": "The type of the place (PR, CTY, AU, LAU)" }, "range_or_recency": { "anyOf": [ { "$ref": "#/$defs/RangeOrRecency" }, { "type": "null" } ], "default": null, "description": "Type of search (RANGE or RECENCY)" } }, "required": [ "place_id", "place_type" ], "title": "start_news_retrievalArguments", "type": "object" }

You must be authenticated.

Other Tools