@firfi/huly-mcp 0.1.22 → 0.1.23

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/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue.svg)](https://www.typescriptlang.org/)
7
7
  [![MCP Server](https://badge.mcpx.dev?type=server&features=tools)](https://github.com/dearlordylord/huly-mcp)
8
- [![cooked at Monadical](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Monadical-SAS/monadical.com/master/static/api/cooked-at-monadical.json)](https://monadical.com)
8
+ [![cooked at Monadical](https://img.shields.io/endpoint?url=https://monadical.com/static/api/cooked-at-monadical.json)](https://monadical.com)
9
9
 
10
10
  MCP server for [Huly](https://huly.io/) integration.
11
11
 
package/dist/index.cjs CHANGED
@@ -174725,6 +174725,10 @@ var LimitParam = Schema_exports.Number.pipe(
174725
174725
  Schema_exports.lessThanOrEqualTo(200)
174726
174726
  );
174727
174727
  var makeJsonSchema = (schema) => JSONSchema_exports.make(schema);
174728
+ var EmptyParamsSchema = Schema_exports.Struct({}).annotations({
174729
+ jsonSchema: { type: "object", properties: {}, additionalProperties: false }
174730
+ });
174731
+ var emptyParamsJsonSchema = makeJsonSchema(EmptyParamsSchema);
174728
174732
 
174729
174733
  // src/domain/schemas/activity.ts
174730
174734
  var ActivityMessageSchema = Schema_exports.Struct({
@@ -178810,10 +178814,7 @@ var UpdateGuestSettingsParamsSchema = Schema_exports.Struct({
178810
178814
  title: "UpdateGuestSettingsParams",
178811
178815
  description: "Parameters for updating guest settings"
178812
178816
  });
178813
- var GetRegionsParamsSchema = Schema_exports.Struct({}).annotations({
178814
- title: "GetRegionsParams",
178815
- description: "Parameters for getting available regions"
178816
- });
178817
+ var GetRegionsParamsSchema = EmptyParamsSchema;
178817
178818
  var listWorkspaceMembersParamsJsonSchema = makeJsonSchema(ListWorkspaceMembersParamsSchema);
178818
178819
  var updateMemberRoleParamsJsonSchema = makeJsonSchema(UpdateMemberRoleParamsSchema);
178819
178820
  var listWorkspacesParamsJsonSchema = makeJsonSchema(ListWorkspacesParamsSchema);
@@ -181906,7 +181907,7 @@ var notificationTools = [
181906
181907
  name: "mark_all_notifications_read",
181907
181908
  description: "Mark all unread notifications as read. Returns the count of notifications marked.",
181908
181909
  category: CATEGORY10,
181909
- inputSchema: {},
181910
+ inputSchema: emptyParamsJsonSchema,
181910
181911
  handler: createToolHandler(
181911
181912
  "mark_all_notifications_read",
181912
181913
  () => Effect_exports.succeed({}),
@@ -181928,7 +181929,7 @@ var notificationTools = [
181928
181929
  name: "archive_all_notifications",
181929
181930
  description: "Archive all notifications. Returns the count of notifications archived.",
181930
181931
  category: CATEGORY10,
181931
- inputSchema: {},
181932
+ inputSchema: emptyParamsJsonSchema,
181932
181933
  handler: createToolHandler(
181933
181934
  "archive_all_notifications",
181934
181935
  () => Effect_exports.succeed({}),
@@ -182005,7 +182006,7 @@ var notificationTools = [
182005
182006
  name: "get_unread_notification_count",
182006
182007
  description: "Get the count of unread notifications.",
182007
182008
  category: CATEGORY10,
182008
- inputSchema: {},
182009
+ inputSchema: emptyParamsJsonSchema,
182009
182010
  handler: createToolHandler(
182010
182011
  "get_unread_notification_count",
182011
182012
  () => Effect_exports.succeed({}),
@@ -182759,7 +182760,7 @@ var workspaceTools = [
182759
182760
  name: "get_workspace_info",
182760
182761
  description: "Get information about the current workspace including name, URL, region, and settings.",
182761
182762
  category: CATEGORY15,
182762
- inputSchema: { type: "object", properties: {} },
182763
+ inputSchema: emptyParamsJsonSchema,
182763
182764
  handler: createNoParamsWorkspaceToolHandler(
182764
182765
  "get_workspace_info",
182765
182766
  () => getWorkspaceInfo()
@@ -182791,7 +182792,7 @@ var workspaceTools = [
182791
182792
  name: "delete_workspace",
182792
182793
  description: "Permanently delete the current workspace. This action cannot be undone. Use with extreme caution.",
182793
182794
  category: CATEGORY15,
182794
- inputSchema: { type: "object", properties: {} },
182795
+ inputSchema: emptyParamsJsonSchema,
182795
182796
  handler: createNoParamsWorkspaceToolHandler(
182796
182797
  "delete_workspace",
182797
182798
  () => deleteWorkspace()
@@ -182801,7 +182802,7 @@ var workspaceTools = [
182801
182802
  name: "get_user_profile",
182802
182803
  description: "Get the current user's profile information including bio, location, and social links.",
182803
182804
  category: CATEGORY15,
182804
- inputSchema: { type: "object", properties: {} },
182805
+ inputSchema: emptyParamsJsonSchema,
182805
182806
  handler: createNoParamsWorkspaceToolHandler(
182806
182807
  "get_user_profile",
182807
182808
  () => getUserProfile()