@shortcut/mcp 0.7.0 → 0.7.1

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
@@ -29,6 +29,8 @@ See the [official Windsurf docs](https://codeium.com/docs/windsurf/mcp) for more
29
29
 
30
30
  ### Cursor
31
31
 
32
+ [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=shortcut&config=eyJjb21tYW5kIjoibnB4IC15IEBzaG9ydGN1dC9tY3BAbGF0ZXN0IiwiZW52Ijp7IlNIT1JUQ1VUX0FQSV9UT0tFTiI6IjxZT1VSX1NIT1JUQ1VUX0FQSV9UT0tFTj4ifX0%3D)
33
+
32
34
  See the [official Cursor docs](https://docs.cursor.com/context/model-context-protocol) for more information.
33
35
 
34
36
  1. Open (or create) the `mcp.json` file (it should be in `~/.cursor/mcp.json` or `<project-root>/.cursor/mcp.json`, but see Cursor docs for more details).
package/dist/index.js CHANGED
@@ -14774,7 +14774,7 @@ class ShortcutClientWrapper {
14774
14774
  }
14775
14775
  async listIterationStories(iterationPublicId) {
14776
14776
  const response = await this.client.listIterationStories(iterationPublicId, {
14777
- includes_description: false
14777
+ includes_description: true
14778
14778
  });
14779
14779
  const stories = response?.data;
14780
14780
  if (!stories)
@@ -21578,7 +21578,7 @@ var import_client = __toESM(require_lib(), 1);
21578
21578
 
21579
21579
  // package.json
21580
21580
  var name = "@shortcut/mcp";
21581
- var version = "0.7.0";
21581
+ var version = "0.7.1";
21582
21582
 
21583
21583
  // src/tools/base.ts
21584
21584
  class BaseTools {
@@ -21854,7 +21854,7 @@ class IterationTools extends BaseTools {
21854
21854
  const { stories } = await this.client.listIterationStories(iterationPublicId);
21855
21855
  if (!stories)
21856
21856
  throw new Error(`Failed to retrieve Shortcut stories in iteration with public ID: ${iterationPublicId}.`);
21857
- return this.toResult(`Result (${stories.length} stories found):`, this.toCorrectedEntities(stories));
21857
+ return this.toResult(`Result (${stories.length} stories found):`, await this.toCorrectedEntities(stories));
21858
21858
  }
21859
21859
  async searchIterations(params) {
21860
21860
  const currentUser = await this.client.getCurrentUser();
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "modelcontextprotocol"
13
13
  ],
14
14
  "license": "MIT",
15
- "version": "0.7.0",
15
+ "version": "0.7.1",
16
16
  "type": "module",
17
17
  "main": "dist/index.js",
18
18
  "bin": {