Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
AgentsData Analyst

Analysis

Performs comprehensive data analysis on provided datasets or search memories.

POST /api/agents/dataAnalyst/analysis

Request Body

{ "site_id": "123e4567-e89b-12d3-a456-426614174000", "analysis_type": "comprehensive", "data": { "key": "value" }, "command_id": "optional-uuid-to-analyze-search-results", "deliverables": ["executive_summary", "key_findings"] }
ParameterTypeRequiredDescription
site_idstringYesThe UUID of the site.
agent_idstringNoThe UUID of the specific agent.
command_idstringNoUUID of a previous search command to analyze its results.
dataanyNoRaw data to analyze.
analysis_typestringNoType of analysis (default: ‘comprehensive’).
time_rangeobjectNoFilter memories by time {from: string, to: string}.
memory_limitnumberNoMax memories to analyze (default: 50).
include_raw_databooleanNoInclude raw data in response (default: false).
deliverablesanyNoSpecific outputs requested.

Response

Returns the analysis results, including executive summary, key findings, and data insights.

Last updated on