ServiceNow MCP Server

by osomai
Verified

update_workflow_activity

Modify workflow activities in ServiceNow by updating their name, description, or attributes using the specified activity ID through the MCP server.

Instructions

Update an existing activity in a workflow

Input Schema

NameRequiredDescriptionDefault
paramsYes

Input Schema (JSON Schema)

{ "$defs": { "UpdateWorkflowActivityParams": { "description": "Parameters for updating a workflow activity.", "properties": { "activity_id": { "description": "Activity ID or sys_id", "title": "Activity Id", "type": "string" }, "attributes": { "anyOf": [ { "type": "object" }, { "type": "null" } ], "default": null, "description": "Additional attributes for the activity", "title": "Attributes" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Description of the activity", "title": "Description" }, "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Name of the activity", "title": "Name" } }, "required": [ "activity_id" ], "title": "UpdateWorkflowActivityParams", "type": "object" } }, "properties": { "params": { "$ref": "#/$defs/UpdateWorkflowActivityParams" } }, "required": [ "params" ], "title": "update_workflow_activityArguments", "type": "object" }
ID: wfdzusqbvb