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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.js +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directify-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
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
@@ -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: '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: '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' },