@trylighthouse/mcp-server 0.1.7 → 0.1.8
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/build/server.js +2 -3
- package/package.json +1 -1
package/build/server.js
CHANGED
|
@@ -827,8 +827,9 @@ export function createServer(apiKey) {
|
|
|
827
827
|
});
|
|
828
828
|
server.registerTool("lighthouse_crm_update_view", {
|
|
829
829
|
title: "Update CRM View",
|
|
830
|
-
description: "Update a saved CRM view or list view's name, filters, sort, or
|
|
830
|
+
description: "Update a saved CRM view or list view's name, filters, sort, or layout. " +
|
|
831
831
|
"Automatically detects whether it's a CRM view or list view. " +
|
|
832
|
+
"To change sharing settings, use lighthouse_crm_update_view_sharing instead. " +
|
|
832
833
|
"Uses CRM filter format — call lighthouse_crm_get_attributes first if modifying filters.",
|
|
833
834
|
inputSchema: {
|
|
834
835
|
id: z.string().uuid().describe("View ID"),
|
|
@@ -837,8 +838,6 @@ export function createServer(apiKey) {
|
|
|
837
838
|
sort: z.array(z.record(z.unknown())).optional().describe(CRM_SORT_DESCRIPTION),
|
|
838
839
|
view_type: z.enum(["table", "kanban"]).optional(),
|
|
839
840
|
grouped_by: z.string().optional().describe("Field key to group by (required for kanban views)"),
|
|
840
|
-
sharing: z.enum(["private", "workspace"]).optional(),
|
|
841
|
-
team_ids: z.array(z.string().uuid()).optional().describe("Team UUIDs to share the view with. Replaces any existing team shares."),
|
|
842
841
|
},
|
|
843
842
|
}, async (params) => {
|
|
844
843
|
try {
|