IA : orchestration
L'orchestration par IA relie les trois : le moteur détecte le moment dans l'état utilisateur, choisit la cohorte et l'action, la boucle tourne sans que vous câbliez chaque étape à la main.
At a glance
- GraphQL
aiquery: summarise, explain, suggest- MCP
- Every
prodantix.*tool, callable by an agent - MCP host
https://eu.mcp.prodantix.com- Auth
- Access token
- Détecte le moment significatif dans l'état en direct
- Sélectionne la bonne cohorte et la bonne action
- Boucle la boucle : l'action devient le prochain événement dont le moteur apprend
Comment ça marche
Every answer is grounded in rows the caller could already read. Citations are resolved server-side from a built candidate list rather than taken from the model’s reply, so an answer can only point at something that exists and the caller is entitled to see.
Où y accéder
| Surface | Operation |
|---|---|
| GraphQL | ai query: summarise, explain, suggest |
| MCP | every prodantix.* tool, callable by an agent |
Exemple
GraphQL
query Explain($projectId: String!) {
ai {
explainMetric(
projectId: $projectId
metric: "order.completed"
window: "P7D"
) {
summary
citations { kind id }
}
}
}Pointing an agent at prodantix
The MCP surface exposes the same capabilities to an autonomous agent. See MCP for the tool list and protocol details.
JSON
{
"mcpServers": {
"prodantix": {
"url": "https://eu.mcp.prodantix.com/mcp",
"headers": { "Authorization": "Bearer <access token>" }
}
}
}