メインコンテンツへスキップ

AI: オーケストレーション

AI オーケストレーションは 3 つを結びつけます。エンジンがユーザー状態の中の瞬間を検知し、コホートを選び、アクションを選択します。そのため、各ステップを手作業で配線せずにループが動きます。

At a glance

GraphQL
ai query: summarise, explain, suggest
MCP
Every prodantix.* tool, callable by an agent
MCP host
https://eu.mcp.prodantix.com
Auth
Access token
  • ライブな状態の中の重要な瞬間を検知します
  • 適切なコホートと適切なアクションを選択します
  • ループを閉じます。アクションは、エンジンが学習する次のイベントになります

仕組み

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.

アクセス先

SurfaceOperation
GraphQLai query: summarise, explain, suggest
MCPevery prodantix.* tool, callable by an agent

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>" }
    }
  }
}