monitor_the_situation
ActiveTool of SimpleFunctions
Universal web intelligence. Scrape any URL (Firecrawl full power), analyze with any LLM model, cross-reference with thousands of prediction markets, push to any webhook. Requires API key (apiKey parameter). For free demo, use enrich_content instead.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"apiKey",
"source"
],
"properties": {
"apiKey": {
"type": "string",
"description": "SimpleFunctions API key. Get one at https://simplefunctions.dev/dashboard/keys"
},
"enrich": {
"type": "object",
"required": [
"enabled",
"topics"
],
"properties": {
"limit": {
"type": "number"
},
"topics": {
"type": "array",
"items": {
"type": "string"
},
"description": "Topics to search in prediction markets"
},
"venues": {
"type": "array",
"items": {
"enum": [
"kalshi",
"polymarket"
],
"type": "string"
}
},
"enabled": {
"type": "boolean"
},
"includeIndex": {
"type": "boolean"
}
},
"description": "Cross-reference with prediction markets"
},
"source": {
"type": "object",
"required": [
"action"
],
"properties": {
"url": {
"type": "string",
"description": "URL to scrape/crawl/map/extract"
},
"urls": {
"type": "array",
"items": {
"type": "string"
},
"description": "URLs for batch_scrape or extract"
},
"query": {
"type": "string",
"description": "Search query (for search action)"
},
"action": {
"enum": [
"scrape",
"crawl",
"search",
"map",
"extract",
"batch_scrape"
],
"type": "string",
"description": "Firecrawl action"
},
"options": {
"type": "object",
"description": "Full Firecrawl passthrough options",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
}
},
"webhook": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "HTTPS webhook URL"
},
"format": {
"enum": [
"full",
"brief",
"tweetable"
],
"type": "string"
},
"secret": {
"type": "string",
"description": "HMAC-SHA256 signing secret"
},
"headers": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string"
}
}
},
"description": "Push results to a webhook"
},
"analysis": {
"type": "object",
"required": [
"enabled",
"prompt"
],
"properties": {
"model": {
"type": "string",
"description": "Any OpenRouter model ID. Default: google/gemini-2.5-flash"
},
"prompt": {
"type": "string",
"description": "What to analyze in the scraped content"
},
"schema": {
"type": "object",
"description": "JSON Schema for structured output",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"enabled": {
"type": "boolean"
},
"temperature": {
"type": "number"
}
},
"description": "LLM analysis of scraped content"
}
}
}Parent server
SimpleFunctions
https://github.com/spfunctions/simplefunctions-cli
2/7 registries