create_changeset
Generate and manage a new changeset in ServiceNow by specifying its name, application, and optional details like description and developer. Simplifies tracking and organizing system updates.
Instructions
Create a new changeset in ServiceNow
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| application | Yes | Application the changeset belongs to | |
| description | No | Description of the changeset | |
| developer | No | Developer responsible for the changeset | |
| name | Yes | Name of the changeset |
Implementation Reference
- The main handler function that implements the create_changeset tool logic. It validates parameters, prepares the POST request to ServiceNow API /api/now/table/sys_update_set, and returns the created changeset or error.def create_changeset( auth_manager: AuthManager, server_config: ServerConfig, params: Union[Dict[str, Any], CreateChangesetParams], ) -> Dict[str, Any]: """ Create a new changeset in ServiceNow. Args: auth_manager: The authentication manager. server_config: The server configuration. params: The parameters for creating a changeset. Can be a dictionary or a CreateChangesetParams object. Returns: The created changeset. """ # Unwrap and validate parameters result = _unwrap_and_validate_params( params, CreateChangesetParams, required_fields=["name", "application"] ) if not result["success"]: return result validated_params = result["params"] # Prepare the request data data = { "name": validated_params.name, "application": validated_params.application, } # Add optional fields if provided if validated_params.description: data["description"] = validated_params.description if validated_params.developer: data["developer"] = validated_params.developer # Get the instance URL instance_url = _get_instance_url(auth_manager, server_config) if not instance_url: return { "success": False, "message": "Cannot find instance_url in either server_config or auth_manager", } # Get the headers headers = _get_headers(auth_manager, server_config) if not headers: return { "success": False, "message": "Cannot find get_headers method in either auth_manager or server_config", } # Add Content-Type header headers["Content-Type"] = "application/json" # Make the API request url = f"{instance_url}/api/now/table/sys_update_set" try: response = requests.post(url, json=data, headers=headers) response.raise_for_status() result = response.json() return { "success": True, "message": "Changeset created successfully", "changeset": result["result"], } except requests.exceptions.RequestException as e: logger.error(f"Error creating changeset: {e}") return { "success": False, "message": f"Error creating changeset: {str(e)}", }
- Pydantic model defining the input parameters for the create_changeset tool, including required fields name and application, and optional description and developer.class CreateChangesetParams(BaseModel): """Parameters for creating a changeset.""" name: str = Field(..., description="Name of the changeset") description: Optional[str] = Field(None, description="Description of the changeset") application: str = Field(..., description="Application the changeset belongs to") developer: Optional[str] = Field(None, description="Developer responsible for the changeset")
- src/servicenow_mcp/utils/tool_utils.py:589-595 (registration)Registration of the create_changeset tool in the central tool definitions dictionary used by the MCP server. Maps the tool name to its handler (aliased), schema (CreateChangesetParams), description, and serialization settings."create_changeset": ( create_changeset_tool, CreateChangesetParams, str, # Expects JSON string "Create a new changeset in ServiceNow", "json_dict", # Tool returns Pydantic model ),
- src/servicenow_mcp/utils/tool_utils.py:104-106 (registration)Import of the create_changeset function aliased as create_changeset_tool, used in the tool registration.from servicenow_mcp.tools.changeset_tools import ( create_changeset as create_changeset_tool, )
- Helper function used by create_changeset (and other tools) to unwrap input parameters (dict or model), validate against the Pydantic schema, and check required fields.def _unwrap_and_validate_params( params: Union[Dict[str, Any], BaseModel], model_class: Type[T], required_fields: Optional[List[str]] = None ) -> Dict[str, Any]: """ Unwrap and validate parameters. Args: params: The parameters to unwrap and validate. Can be a dictionary or a Pydantic model. model_class: The Pydantic model class to validate against. required_fields: List of fields that must be present. Returns: A dictionary with success status and validated parameters or error message. """ try: # Handle case where params is already a Pydantic model if isinstance(params, BaseModel): # If it's already the correct model class, use it directly if isinstance(params, model_class): model_instance = params # Otherwise, convert to dict and create new instance else: model_instance = model_class(**params.dict()) # Handle dictionary case else: # Create model instance model_instance = model_class(**params) # Check required fields if required_fields: missing_fields = [] for field in required_fields: if getattr(model_instance, field, None) is None: missing_fields.append(field) if missing_fields: return { "success": False, "message": f"Missing required fields: {', '.join(missing_fields)}", } return { "success": True, "params": model_instance, } except Exception as e: return { "success": False, "message": f"Invalid parameters: {str(e)}", }