get_workflow_details
Retrieve detailed information about a specific workflow, including versions, from ServiceNow using its ID. This tool extracts workflow data via the ServiceNow MCP Server for streamlined access.
Instructions
Get detailed information about a specific workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetWorkflowDetailsParams": {
"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"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetWorkflowDetailsParams"
}
},
"required": [
"params"
],
"title": "get_workflow_detailsArguments",
"type": "object"
}