directify-mcp 1.3.0 → 1.3.1
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 +6 -2
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -773,9 +773,11 @@ export const createOrganizer = {
|
|
|
773
773
|
directory_id: { type: 'string', description: 'Directory ID' },
|
|
774
774
|
name: { type: 'string', description: 'Organizer name (required)' },
|
|
775
775
|
slug: { type: 'string', description: 'URL slug (auto-generated from name if not provided)' },
|
|
776
|
-
description: { type: 'string', description: '
|
|
776
|
+
description: { type: 'string', description: 'Short description (shown on cards and header)' },
|
|
777
|
+
content: { type: 'string', description: 'Long-form content (markdown supported, rendered as styled prose on profile page)' },
|
|
777
778
|
email: { type: 'string', description: 'Contact email address' },
|
|
778
779
|
phone: { type: 'string', description: 'Contact phone number' },
|
|
780
|
+
address: { type: 'string', description: 'Physical address' },
|
|
779
781
|
website_url: { type: 'string', description: 'Website URL' },
|
|
780
782
|
social_links: { type: 'object', description: 'Social links as key-value pairs (e.g. {Twitter: "https://..."})' },
|
|
781
783
|
user_id: { type: 'number', description: 'User ID to assign as organizer owner (for submitter dashboard access)' },
|
|
@@ -801,9 +803,11 @@ export const updateOrganizer = {
|
|
|
801
803
|
organizer_id: { type: 'string', description: 'Organizer ID to update' },
|
|
802
804
|
name: { type: 'string', description: 'Organizer name' },
|
|
803
805
|
slug: { type: 'string', description: 'URL slug' },
|
|
804
|
-
description: { type: 'string', description: '
|
|
806
|
+
description: { type: 'string', description: 'Short description (shown on cards and header)' },
|
|
807
|
+
content: { type: 'string', description: 'Long-form content (markdown supported, rendered as styled prose on profile page)' },
|
|
805
808
|
email: { type: 'string', description: 'Contact email address' },
|
|
806
809
|
phone: { type: 'string', description: 'Contact phone number' },
|
|
810
|
+
address: { type: 'string', description: 'Physical address' },
|
|
807
811
|
website_url: { type: 'string', description: 'Website URL' },
|
|
808
812
|
social_links: { type: 'object', description: 'Social links as key-value pairs' },
|
|
809
813
|
user_id: { type: 'number', description: 'User ID to assign as organizer owner' },
|