directify-mcp 1.1.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/tools.js +2 -0
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -67,6 +67,7 @@ export const createCategory = {
|
|
|
67
67
|
parent_id: { type: 'number', description: 'Parent category ID for nesting' },
|
|
68
68
|
is_active: { type: 'boolean', description: 'Whether the category is active (default: true)' },
|
|
69
69
|
order: { type: 'number', description: 'Sort order' },
|
|
70
|
+
head_html: { type: 'string', description: 'Custom HTML injected into the <head> of the category page (e.g. hreflang tags, schema markup)' },
|
|
70
71
|
},
|
|
71
72
|
required: ['title'],
|
|
72
73
|
},
|
|
@@ -93,6 +94,7 @@ export const updateCategory = {
|
|
|
93
94
|
parent_id: { type: 'number', description: 'Parent category ID' },
|
|
94
95
|
is_active: { type: 'boolean', description: 'Active status' },
|
|
95
96
|
order: { type: 'number', description: 'Sort order' },
|
|
97
|
+
head_html: { type: 'string', description: 'Custom HTML injected into the <head> of the category page (e.g. hreflang tags, schema markup)' },
|
|
96
98
|
},
|
|
97
99
|
required: ['category_id'],
|
|
98
100
|
},
|