get_article
Retrieve specific Zendesk articles by ID using the Zendesk API MCP Server. Simplify access to support content for efficient troubleshooting and knowledge sharing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Article ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Article ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}