get_article
Retrieve a specific knowledge article by its ID from ServiceNow using the MCP Server, enabling quick access to information for analysis or integration.
Instructions
Get a specific knowledge article by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_id | Yes | ID of the article to get |
Input Schema (JSON Schema)
{
"description": "Parameters for getting a knowledge article.",
"properties": {
"article_id": {
"description": "ID of the article to get",
"title": "Article Id",
"type": "string"
}
},
"required": [
"article_id"
],
"title": "GetArticleParams",
"type": "object"
}