@firfi/huly-mcp 0.1.6 → 0.1.7

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/dist/index.cjs +3 -3
  2. package/package.json +2 -1
package/dist/index.cjs CHANGED
@@ -142955,7 +142955,7 @@ var createIssue = (params) => Effect_exports.gen(function* () {
142955
142955
  return { identifier: identifier2 };
142956
142956
  });
142957
142957
  var updateIssue = (params) => Effect_exports.gen(function* () {
142958
- const { client, project: project3, issue: issue2 } = yield* findProjectAndIssue(params);
142958
+ const { client, issue: issue2, project: project3 } = yield* findProjectAndIssue(params);
142959
142959
  const updateOps = {};
142960
142960
  if (params.title !== void 0) {
142961
142961
  updateOps.title = params.title;
@@ -143017,7 +143017,7 @@ var updateIssue = (params) => Effect_exports.gen(function* () {
143017
143017
  return { identifier: issue2.identifier, updated: true };
143018
143018
  });
143019
143019
  var addLabel = (params) => Effect_exports.gen(function* () {
143020
- const { client, project: project3, issue: issue2 } = yield* findProjectAndIssue(params);
143020
+ const { client, issue: issue2, project: project3 } = yield* findProjectAndIssue(params);
143021
143021
  const existingLabels = yield* client.findAll(
143022
143022
  tags3.class.TagReference,
143023
143023
  {
@@ -143079,7 +143079,7 @@ var addLabel = (params) => Effect_exports.gen(function* () {
143079
143079
  return { identifier: issue2.identifier, labelAdded: true };
143080
143080
  });
143081
143081
  var deleteIssue = (params) => Effect_exports.gen(function* () {
143082
- const { client, project: project3, issue: issue2 } = yield* findProjectAndIssue(params);
143082
+ const { client, issue: issue2, project: project3 } = yield* findProjectAndIssue(params);
143083
143083
  yield* client.removeDoc(
143084
143084
  tracker.class.Issue,
143085
143085
  project3._id,
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@firfi/huly-mcp",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "MCP server for Huly integration",
5
+ "mcpName": "io.github.dearlordylord/huly-mcp",
5
6
  "type": "module",
6
7
  "main": "./dist/index.cjs",
7
8
  "files": [