activate_workflow
Initiate and execute workflows in ServiceNow by specifying the workflow ID, enabling automation of processes and task management through the MCP server integration.
Instructions
Activate a workflow in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ActivateWorkflowParams": {
"description": "Parameters for activating a workflow.",
"properties": {
"workflow_id": {
"description": "Workflow ID or sys_id",
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "ActivateWorkflowParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/ActivateWorkflowParams"
}
},
"required": [
"params"
],
"title": "activate_workflowArguments",
"type": "object"
}