Workflow Management in ServiceNow MCP¶
This document provides detailed information about the workflow management tools available in the ServiceNow MCP server.
Overview¶
ServiceNow workflows are a powerful automation feature that allows you to define and automate business processes. The workflow management tools in the ServiceNow MCP server enable you to view, create, and modify workflows in your ServiceNow instance.
Available Tools¶
Viewing Workflows¶
- list_workflows - List workflows from ServiceNow
-
Parameters:
limit(optional): Maximum number of records to return (default: 10)offset(optional): Offset to start from (default: 0)active(optional): Filter by active status (true/false)name(optional): Filter by name (contains)query(optional): Additional query string
-
get_workflow_details - Get detailed information about a specific workflow
-
Parameters:
workflow_id(required): Workflow ID or sys_id
-
list_workflow_versions - List all versions of a specific workflow
-
Parameters:
workflow_id(required): Workflow ID or sys_idlimit(optional): Maximum number of records to return (default: 10)offset(optional): Offset to start from (default: 0)
-
get_workflow_activities - Get all activities in a workflow
- Parameters:
workflow_id(required): Workflow ID or sys_idversion(optional): Specific version to get activities for (if not provided, the latest published version will be used)
Modifying Workflows¶
- create_workflow - Create a new workflow in ServiceNow
-
Parameters:
name(required): Name of the workflowdescription(optional): Description of the workflowtable(optional): Table the workflow applies toactive(optional): Whether the workflow is active (default: true)attributes(optional): Additional attributes for the workflow
-
update_workflow - Update an existing workflow
-
Parameters:
workflow_id(required): Workflow ID or sys_idname(optional): Name of the workflowdescription(optional): Description of the workflowtable(optional): Table the workflow applies toactive(optional): Whether the workflow is activeattributes(optional): Additional attributes for the workflow
-
activate_workflow - Activate a workflow
-
Parameters:
workflow_id(required): Workflow ID or sys_id
-
deactivate_workflow - Deactivate a workflow
- Parameters:
workflow_id(required): Workflow ID or sys_id
Managing Workflow Activities¶
- add_workflow_activity - Add a new activity to a workflow
-
Parameters:
workflow_id(required): Workflow ID or sys_idname(required): Name of the activitydescription(optional): Description of the activityactivity_type(required): Type of activity (e.g., 'approval', 'task', 'notification')attributes(optional): Additional attributes for the activityposition(optional): Position in the workflow (if not provided, the activity will be added at the end)
-
update_workflow_activity - Update an existing activity in a workflow
- Parameters:
activity_id(required): Activity ID or sys_idname(optional): Name of the activitydescription(optional): Description of the activityattributes(optional): Additional attributes for the activity
-
delete_workflow_activity - Delete an activity from a workflow
- Parameters:
activity_id(required): Activity ID or sys_id
-
reorder_workflow_activities - Change the order of activities in a workflow
- Parameters:
workflow_id(required): Workflow ID or sys_idactivity_ids(required): List of activity IDs in the desired order
Usage Examples¶
Viewing Workflows¶
List all active workflows¶
Get details about a specific workflow¶
List all versions of a workflow¶
Get all activities in a workflow¶
Modifying Workflows¶
Create a new workflow¶
result = create_workflow({
"name": "Software License Request",
"description": "Workflow for handling software license requests",
"table": "sc_request"
})
Update an existing workflow¶
result = update_workflow({
"workflow_id": "2bda7cda87a9c150e0b0df23cebb3590",
"description": "Updated workflow description",
"active": True
})
Activate a workflow¶
Deactivate a workflow¶
Managing Workflow Activities¶
Add a new activity to a workflow¶
result = add_workflow_activity({
"workflow_id": "2bda7cda87a9c150e0b0df23cebb3590",
"name": "Manager Approval",
"description": "Approval step for the manager",
"activity_type": "approval"
})
Update an existing activity¶
result = update_workflow_activity({
"activity_id": "3cda7cda87a9c150e0b0df23cebb3591",
"name": "Updated Activity Name",
"description": "Updated activity description"
})
Delete an activity¶
Reorder activities in a workflow¶
result = reorder_workflow_activities({
"workflow_id": "2bda7cda87a9c150e0b0df23cebb3590",
"activity_ids": [
"3cda7cda87a9c150e0b0df23cebb3591",
"4cda7cda87a9c150e0b0df23cebb3592",
"5cda7cda87a9c150e0b0df23cebb3593"
]
})
Common Activity Types¶
ServiceNow provides several activity types that can be used when adding activities to a workflow:
- approval - An approval activity that requires user action
- task - A task that needs to be completed
- notification - Sends a notification to users
- timer - Waits for a specified amount of time
- condition - Evaluates a condition and branches the workflow
- script - Executes a script
- wait_for_condition - Waits until a condition is met
- end - Ends the workflow
Best Practices¶
- Version Control: Always create a new version of a workflow before making significant changes.
- Testing: Test workflows in a non-production environment before deploying to production.
- Documentation: Document the purpose and behavior of each workflow and activity.
- Error Handling: Include error handling in your workflows to handle unexpected situations.
- Notifications: Use notification activities to keep stakeholders informed about the workflow progress.
Troubleshooting¶
Common Issues¶
- Error: "No published versions found for this workflow"
- This error occurs when trying to get activities for a workflow that has no published versions.
-
Solution: Publish a version of the workflow before trying to get its activities.
-
Error: "Activity type is required"
- This error occurs when trying to add an activity without specifying its type.
-
Solution: Provide a valid activity type when adding an activity.
-
Error: "Cannot modify a published workflow version"
- This error occurs when trying to modify a published workflow version.
-
Solution: Create a new draft version of the workflow before making changes.
-
Error: "Workflow ID is required"
- This error occurs when not providing a workflow ID for operations that require it.
- Solution: Make sure to include the workflow ID in your request.