get-article-by-id
Fetch specific Shopify blog articles by their unique GID using this tool in the Shopify MCP Server, enabling precise retrieval and management of store content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
articleId | Yes | The GID of the article to fetch (e.g., "gid://shopify/Article/1234567890") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"articleId": {
"description": "The GID of the article to fetch (e.g., \"gid://shopify/Article/1234567890\")",
"minLength": 1,
"type": "string"
}
},
"required": [
"articleId"
],
"type": "object"
}