update_article
Modify knowledge article details including title, category, keywords, short description, and main body text using the article ID in ServiceNow MCP Server.
Instructions
Update an existing knowledge article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UpdateArticleParams": {
"description": "Parameters for updating a knowledge article.",
"properties": {
"article_id": {
"description": "ID of the article to update",
"title": "Article Id",
"type": "string"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated category for the article",
"title": "Category"
},
"keywords": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated keywords for search",
"title": "Keywords"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated short description",
"title": "Short Description"
},
"text": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated main body text for the article",
"title": "Text"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated title of the article",
"title": "Title"
}
},
"required": [
"article_id"
],
"title": "UpdateArticleParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/UpdateArticleParams"
}
},
"required": [
"params"
],
"title": "update_articleArguments",
"type": "object"
}