OpenWebSearch
spacefrontiers_search_social
Search Reddit, Telegram channels, and YouTube transcripts in the Space Frontiers `social` index. Use when: the user asks about news, recent events, announcements, ongoing discussions, community opinions, or anything time-sensitive that wouldn't be in peer-reviewed literature. Do not use when: the question is about settled scientific knowledge, citations, or prior art — call `spacefrontiers_search_documents` instead. For general web search, use a different MCP server. Examples: "openai gpt-5 release date", "site:reddit.com/r/LocalLLaMA quantization", "@telegram_channel breaking news", "kubernetes 1.33 changes discussion". Tips: - Pair an empty `query` with `filter_uri_prefixes` to browse a subreddit or Telegram channel chronologically (combine with `filter_issued_after` for a time window). - For broad topics, also call `spacefrontiers_search_documents` in parallel for grounded sources.
Other tools also called spacefrontiers_search_social?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"default": 30,
"maximum": 100,
"minimum": 1,
"description": "Number of results to return. Use 20-30 for broad coverage on a single query; smaller (5-10) when running many parallel queries."
},
"query": {
"type": "string",
"default": "",
"description": "Free-text search query. Can be empty when filters alone are enough (e.g. browse recent papers from one journal)."
},
"filter_issued_after": {
"type": "integer",
"default": null,
"description": "Only return documents published after this Unix timestamp (seconds, UTC). For \"last 7 days\" use `now - 604800`."
},
"filter_uri_prefixes": {
"type": "array",
"items": {
"type": "string"
},
"default": null,
"description": "Restrict to one or more sources by URI prefix. Examples: `[\"https://reddit.com/r/MachineLearning/\"]` for one subreddit (case-sensitive), `[\"@channel_username\"]` for one Telegram channel (the @ prefix is resolved automatically)."
},
"filter_issued_before": {
"type": "integer",
"default": null,
"description": "Only return documents published before this Unix timestamp (seconds, UTC)."
}
}
}