@togglhq/mcp 1.5.68 → 1.5.69

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/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { n as runMcpCli } from "./src-CRQWGSL5.js";
2
+ import { n as runMcpCli } from "./src-Y2AYfrfQ.js";
3
3
  //#region src/cli.ts
4
4
  runMcpCli();
5
5
  //#endregion
package/build/index.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- import { n as runMcpCli, t as bootstrapServer } from "./src-CRQWGSL5.js";
2
+ import { n as runMcpCli, t as bootstrapServer } from "./src-Y2AYfrfQ.js";
3
3
  export { bootstrapServer, runMcpCli };
@@ -29768,6 +29768,12 @@ async function updateOrganizationGroupUserRole(httpClient, organization_id, grou
29768
29768
  json: data
29769
29769
  }).json();
29770
29770
  }
29771
+ async function getOrganizationMemberTags(httpClient, organization_id, { workspace_id }, signal) {
29772
+ return await httpClient.get(`organizations/${organization_id}/member-tags`, {
29773
+ signal,
29774
+ searchParams: buildSearchParams$3({ workspace_id })
29775
+ }).json();
29776
+ }
29771
29777
  async function getOrganizationRoles(httpClient, organization_id, signal) {
29772
29778
  return await httpClient.get(`organizations/${organization_id}/roles`, { signal }).json();
29773
29779
  }
@@ -36607,6 +36613,32 @@ const generatedFocusOperations = [
36607
36613
  ]));
36608
36614
  }
36609
36615
  },
36616
+ {
36617
+ id: "focus.organization.get-member-tags",
36618
+ family: "focus",
36619
+ resource: "organization",
36620
+ action: "get-member-tags",
36621
+ title: "Get Member Tags Organization",
36622
+ description: "Get Member Tags Organization.",
36623
+ safety: "read",
36624
+ destructive: false,
36625
+ cli: {
36626
+ group: ["organization"],
36627
+ command: "get-member-tags",
36628
+ interactive: "available"
36629
+ },
36630
+ mcp: { entityTool: "organization" },
36631
+ inputSchema: /* @__PURE__ */ looseObject({ workspace_id: /* @__PURE__ */ number$2() }),
36632
+ execute: (input, { client }) => {
36633
+ const data = input;
36634
+ return client.runGeneratedRequest("getOrganizationMemberTags", () => callGeneratedRequest(getOrganizationMemberTags, [
36635
+ client.httpClient,
36636
+ client.organizationId,
36637
+ data,
36638
+ void 0
36639
+ ]));
36640
+ }
36641
+ },
36610
36642
  {
36611
36643
  id: "focus.organization.get-my-groups",
36612
36644
  family: "focus",
@@ -45851,7 +45883,7 @@ import_main.default.config({
45851
45883
  quiet: true,
45852
45884
  ignore: ["MISSING_ENV_FILE"]
45853
45885
  });
45854
- const packageVersion = "1.5.68";
45886
+ const packageVersion = "1.5.69";
45855
45887
  function resolvePublicUrls() {
45856
45888
  return {
45857
45889
  focusApiUrl: process.env.TOGGL_FOCUS_API_URL ?? "https://focus.toggl.com",
@@ -45916,4 +45948,4 @@ function bootstrapServer(options = {}) {
45916
45948
  //#endregion
45917
45949
  export { runMcpCli as n, bootstrapServer as t };
45918
45950
 
45919
- //# sourceMappingURL=src-CRQWGSL5.js.map
45951
+ //# sourceMappingURL=src-Y2AYfrfQ.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@togglhq/mcp",
3
- "version": "1.5.68",
3
+ "version": "1.5.69",
4
4
  "description": "Toggl 2.0 MCP server for Claude Code, Claude Desktop, and other MCP clients.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",