@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.
Files changed (2) hide show
  1. package/build/server.js +2 -3
  2. 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 sharing settings. " +
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trylighthouse/mcp-server",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "MCP server for the Lighthouse CRM API",
5
5
  "type": "module",
6
6
  "main": "./build/server.js",