get-blogs
Access and retrieve Shopify store blog posts by search title or limit results. Simplify blog management and data extraction using the Shopify MCP Server's GraphQL API.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| limit | No | ||
| searchTitle | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "limit": {
      "default": 10,
      "type": "number"
    },
    "searchTitle": {
      "type": "string"
    }
  },
  "type": "object"
}