manage_scheduled_reports
InactiveTool of Fodda Knowledge Graphs
Create, list, cancel, update, pause, or resume scheduled intelligence briefings. Users can set up autonomous research that runs weekly (Mondays) or daily (Mon-Fri) at 9am in their timezone, delivered via email or Slack. Costs 20 API calls per run. Supports topic research or brand intelligence report types.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"action"
],
"properties": {
"email": {
"type": "string",
"description": "Email address to deliver reports to"
},
"query": {
"type": "string",
"description": "For \"create\": the research query to run"
},
"action": {
"enum": [
"create",
"list",
"cancel",
"update",
"pause",
"resume"
],
"type": "string"
},
"brands": {
"type": "array",
"items": {
"type": "string"
},
"description": "For brand_intelligence: brand names to track (e.g., [\"Nike\", \"Patagonia\"])"
},
"graphs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Specific graph IDs to search. Default: all accessible"
},
"cadence": {
"enum": [
"weekly",
"daily"
],
"type": "string",
"description": "weekly or daily (Mon-Fri). Default: weekly"
},
"timezone": {
"enum": [
"london",
"new_york",
"san_francisco",
"sydney"
],
"type": "string",
"description": "Delivery timezone for 9am delivery. Default: new_york"
},
"report_type": {
"enum": [
"topic_research",
"brand_intelligence"
],
"type": "string",
"description": "topic_research for sector trends, brand_intelligence for competitive tracking"
},
"schedule_id": {
"type": "string",
"description": "For cancel/update/pause/resume: the schedule ID"
},
"slack_webhook": {
"type": "string",
"description": "Optional Slack webhook URL for delivery"
}
}
}Parent server
Fodda Knowledge Graphs
https://github.com/fodda/mcp-server
1/7 registries