Replies: 2 comments 1 reply
-
|
When your workflow reaches the human input node via MCP server and enters a "pending" state, here's how to interact with it: 1. Detect the Pending State When using streaming mode, you'll receive a 2. Retrieve Form Content Use the pause details endpoint: This returns form details including 3. Submit Human Input To submit the form and resume the workflow: With body: {
"inputs": { "field_name": "field_value" },
"action": "Approve"
}The 4. Get Final Output Since workflow resumption is asynchronous via Celery, poll the status endpoint: Wait until There's also a related discussion on detecting Human Input Node states that covers similar ground. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
|
POST /mcp/server/{MCP Server code}/mcp
|
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Self Checks
1. Is this request related to a challenge you're experiencing? Tell me about your story.
I have activated the MCP server in the workflow and intend to execute it from LangGraph's ToolNode.
At this point, the workflow is called normally and enters a pending state at the human input node. However, how can I actually verify the form content configured at the human input node and proceed to execute it at the next node?
Currently, the delivery method for the human input node is set to web app.
2. Additional context or comments
workflow config

MCP Server

Workflow Log

Beta Was this translation helpful? Give feedback.
All reactions