Integration Hub
Choose the Stacksona integration path for the platform your agents already use.
Choose the simplest path
Use a native Stacksona surface when one exists. Use a recipe only when the platform does not have a dedicated package yet.
n8n
NativeInstall the community node and place Stacksona before risky workflow actions.
Node and TypeScript
Native SDKUse the SDK in custom agents, backend services, and approval sidecars.
MCP Clients
Native MCPExpose Stacksona approval tools to MCP-compatible agent clients.
Custom REST
RESTCall Stacksona directly from any platform that supports HTTP.
The call every recipe uses
Every platform recipe eventually does this: send the proposed action to Stacksona, then branch on the returned decision.
curl -X POST "$STACKSONA_GATE_URL/api/agent/tasks/task_123/requests" \
-H "Authorization: Bearer $STACKSONA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workflow_name": "Customer Support",
"task_label": "Approve customer email",
"tool_name": "send_email",
"subject": "Send reply to customer@example.com",
"preview": "Agent drafted a customer-facing reply.",
"risk_level": "medium"
}'Platform recipes
Recipes are implementation guides using HTTP, webhooks, the SDK, or a small bridge service. They are not native Stacksona packages unless marked as native.
OpenAI Agents SDK
RecipeWrap risky function tools so approval happens before the tool executes.
LangGraph
RecipeUse Stacksona as the approval inbox and audit layer around graph pause, review, and resume patterns.
CrewAI
RecipeRequire Stacksona approval before CrewAI tools perform external, customer-facing, financial, or destructive actions.
LlamaIndex
RecipeRoute human input and approval points through Stacksona before LlamaIndex workflows continue.
Dify
RecipeUse Dify workflow nodes to request Stacksona approval, collect review decisions, and continue or stop the workflow.
Make
RecipeCall Stacksona before Make scenarios write records, send messages, issue refunds, or call production APIs.
Zapier Agents
RecipeInsert Stacksona as a pre-action approval step before Zapier agents trigger app actions.
Copilot Studio
RecipeRoute Copilot agent actions into Stacksona for review before Power Platform or external operations continue.
Salesforce Agentforce
RecipeGate record mutations, customer actions, and workflow changes with Stacksona decisions.
Google ADK
RecipeAdd approval checks before Google ADK tools take production, customer, or external actions.
GitHub Actions
RecipeRequire Stacksona approval before deploy, release, destructive repository operations, or production scripts.
Decision routing
| Status | Workflow behavior |
|---|---|
allow | Execute the action immediately. |
pending_review | Wait, poll briefly, or store the decision ID and resume through a callback. |
approved | Execute the action and log the result. |
reject or rejected | Do not execute. Route to fallback or manual handling. |