get_workflow_details
Retrieve detailed information about a specific workflow on ServiceNow MCP Server, including versions if specified, using the workflow ID as input.
Instructions
Get detailed information about a specific workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_versions | No | Include workflow versions | |
workflow_id | Yes | Workflow ID or sys_id |
Input Schema (JSON Schema)
{
"description": "Parameters for getting workflow details.",
"properties": {
"include_versions": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"description": "Include workflow versions",
"title": "Include Versions"
},
"workflow_id": {
"description": "Workflow ID or sys_id",
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "GetWorkflowDetailsParams",
"type": "object"
}