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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directify-mcp",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "description": "MCP server for Directify - manage your directory websites through AI assistants like Claude.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
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
  },