Skip to content
This repository was archived by the owner on Jul 8, 2026. It is now read-only.

Commit 34bb31d

Browse files
Bump version to 0.24.0 and document epics-create-comment tool
1 parent a8dfd51 commit 34bb31d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ If your IDE doesn't support HTTP-based MCP servers, or you'd prefer to run the s
111111
| `epics-create` | Create a new Shortcut epic |
112112
| `epics-update` | Update an existing Shortcut epic |
113113
| `epics-delete` | Delete a Shortcut epic |
114+
| `epics-create-comment` | Create a comment on an epic |
114115

115116
### Iterations
116117

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shortcut/mcp",
3-
"version": "0.23.1",
3+
"version": "0.24.0",
44
"description": "Shortcut MCP Server",
55
"repository": {
66
"type": "git",

src/tools/epics.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,7 @@ export class EpicTools extends BaseTools {
220220
if (!text) throw new Error("Epic comment text is required");
221221

222222
const epic = await this.client.getEpic(epicPublicId);
223-
if (!epic)
224-
throw new Error(`Failed to retrieve Shortcut epic with public ID: ${epicPublicId}`);
223+
if (!epic) throw new Error(`Failed to retrieve Shortcut epic with public ID: ${epicPublicId}`);
225224

226225
const epicComment = replyToCommentId
227226
? await this.client.createEpicCommentComment(epicPublicId, replyToCommentId, {

0 commit comments

Comments
 (0)